@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
*{
    font-family: 'Playfair Display', serif;
}
body{
    min-height: 100vh;
}
footer{
    min-height: 100px;
    background-color: #D8C9B8;
}
nav{
    height: 120px;
    background-color: #D8C9B8;
}
.navlogo{
    height: 110px;
}
.nav-item{
    text-align: center;
    font-size:21px;
    width: 150px;
}
.offcanvas{
    background-color: #D8C9B8;
}



@media only screen and (max-width: 1294px) {
    .nav-item{
        text-align: center;
        font-size:19px;
        width: 140px;
    }
}
@media only screen and (max-width: 1200px) {
    .navlogo{
        height: 100px;
    }
    .offcanvas-title{
        margin-bottom: 20px;
    }
    .nav-item{
        text-align: center;
        font-size:20px;
        width:100%;
    }
    .vr{
        display: none;
    }
}



.footerr{
    display: flex;
    justify-content: center;
    align-items: center; 
}

.footbreak{
    display: none;
    margin-top: 0px;
    margin-bottom: 0px;
}
.footerlink{
    margin-right: 85px;
    text-decoration: none;
    color: black;
    transition: .2s ease-out;
}
.footerlink:hover{
    text-decoration:underline;
    color: rgb(112, 112, 112);
}
.footerlink>img{
    margin-right: 5px;
    width: 50px;
    height: 50px;
}
@media only screen and (max-width: 771px) {
    .footbreak{
        display:flex;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .footerlink>img{
        margin-top: 10px;
    }
    .footerr{
        display:block; 
    }
}

#gotop {
    display: none;
    text-align: center;
    padding: 5px;
    z-index: 9999;
    position: fixed;
    right: 4%;
    bottom: 5%;
    width: 40px;
    height: 40px;
    border: none;
    color: black;
    background-color: #b68d5e;
    border-radius: 50px;
    transition: .2s ease;
}

#gotop:hover {
    background-color: #917351;
}
