@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html{
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url(https://images.pexels.com/photos/15113391/pexels-photo-15113391/free-photo-of-croissants-and-cakes-in-bakery.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: scroll;
}

.logo{
    
    font-family: "Dancing Script", cursive;
    font-size: xx-large;
    text-decoration: none;
    color: #fff;
}

h1, h2, h3, h4{
      font-family: "Berkshire Swash", serif;
}

header {
    background: rgb(150, 130, 80);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header .logo, header nav {
    max-width: 1200px;
    margin: 0 auto;
}

header > div, header > nav {
    flex: 1;
}

nav ul { 
    list-style: none; 
    display: flex; 
    justify-content: flex-end;
}

nav ul li { 
    margin-left: 20px; 
}

nav ul li a { 
    color: #fff; 
    text-decoration: none; 
}

section {
    background-color: white;
    text-align: center;
    margin: 30px auto;
    width: 90%;
    max-width: 900px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

img {
    height: auto; 
    max-width: 100%;
    margin: 10px auto;
    display: block;
    border-radius: 6px;
}

form input, form textarea, form button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

footer {
    background: rgb(150, 130, 80);
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
}

table{
    margin: 0 auto;
    width: 100%;
}

table, th, td {
    text-align: center;
    padding: 8px;
}

footer {
    margin-top: auto;
}
