/* CSS RESETS */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: cursive;
}

/* GENERAL */
header{
    display: flex;
    flex-direction: column;
    position: relative;
}
header div{
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
header div h2{
    border: 5px solid #fff;
    border-radius: 20px;
    align-self: center;
    margin: 0;
    font-size: 2.5rem;
    padding: 10px 5px;
}

header nav{
    height: 50px;
    /* position: absolute; */
    bottom: 0px;
}
header nav ul a:hover{
    color: rgba(255, 0, 0, 0.87);
}

main .banner-1 img, .gallery img, section img{
    width: 100%;
}
main .banner-1 img{
    padding-top: 6px;
}

main .container p{
    text-align: justify;
    line-height: 40px;
    margin-bottom: 10px;
    font-size: 20px;
}

footer{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10vh;
    
}
.contact-footer{
    position: relative;
    width: 100%;
    top: -20px;
    height: 80px;
}

/* Friends */
.friends-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 20px !important;
    margin-right: 10px !important;
    margin-bottom: 20px;
}

.gallery div div{
    margin-bottom: 20px;
}

/* CONTACT PAGE */
main section img, .gallery-headind, .banner-1 img{
    position: relative;
    top: -20px;
}

section{
    position: relative;
    background-image: url('../images/banner.png');
    background-size: 100% 100%;
    min-height: 100vh;
    top: -20px;
}
section img{
    height: 100%;
}
.contact-form{
    position: absolute;
    top: 3rem;
    left: 5rem;
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 35px 30px;
    border-radius: 20px;justify-content: space-between;
}

.contact-form input, .contact-form textarea{
    max-width: 100%;
    font-size: 25px;
}

.contact-form input::placeholder, .contact-form textarea::placeholder{
    font-size: 25px;
    font-family: cursive;
    padding: 10px;
    color: rgba(49, 49, 49, 0.589);
}

.contact-form textarea{
    height: 5rem;
}

.contact-form .btn{
    width: fit-content;

}

/* UTILITY CLASSES */
.no-wrap{
    text-wrap: nowrap;
}
.center{
    place-self: center;
}
.bold{
    font-weight: bold;
}
.row-margin-btm-0{
    margin-bottom: 0 !important;
}
.content-to-center{
    display: flex;
    align-items: center;
    justify-content: center;
}