*, *:after, *:before {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /*background: linear-gradient(135deg, rgb(255, 251, 224) 0%, rgb(253, 246, 227) 100%);*/


    font-family: "Alegreya", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#container {
    max-width: 100vw;
    min-height: 100vh;
    position: relative;

}

#header {
    position: relative;
    text-align: center;
    width: 100vw;
    padding: 1vw 0;
    overflow: hidden;
}
#header::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/Cookies/THUMBNAIL.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(70%);
    z-index: 0;
}
#header a, #web-name, #logo {
    position: relative;
    z-index: 1;
}

#header a{
    text-decoration: none;
    color: rgb(255, 255, 255);
}


#logo img {
    width: 7vw;
    height: auto;
    margin-right: 1vw;
    vertical-align: middle;
}

#web-name {
    font-size: 3vw;
    vertical-align: middle;
}

#navigation {
    width: 100%;
    text-align: center;
    font-size: 1vw;
    margin-bottom: 2vw;
    background-color: rgb(230, 183, 196);
}

#navigation a{
    text-decoration: none;
    color: rgb(0, 0, 0);
}
#navigation a:hover {
    color: rgb(255, 255, 255);
}

#main-body {
    padding: 0 20px 150px;
}

#contact {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    font-size: 1vw;
    padding: 40px 0 20px;
    background-color: rgb(230, 183, 196);
}

#contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
}

#contact-info a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

#contact-info a:hover {
    color: rgb(230, 183, 196);
}

#contact-info p {
    display: inline-flex;
    align-items: center;
    gap: 0.6vw;
    margin: 0;
}

.social-icon {
    width: 1.2em;
    height: 1.2em;
    display: block;
}

@media (max-width:640px) {

    #header{
        padding: 5vw 2vw;
        align-items: center;
        text-align: left;
    }

    #logo img{
        width: 12vw;
    }

    #web-name {
        font-size: 9vw;
    }

    #navigation {
        display: none;
    }

    #main-body {
        padding: 0 20px 150px;
    }

    #contact {
    font-size: 5vw;
    }
}