@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Cormorant";
}

.logo {
    max-width: 140px;
}

.nav-link {
    color: black;
    font-size: 24px;
    font-weight: 600;
}

.nav-link:hover {
    color: #727272;
}

.item {
    position: relative;
}

.item-description {
    display: none;
}

.item:hover .item-description {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    text-decoration: none;
    font-size: 24px;
    animation: fadeIn 1s;
    font-weight: 600;
}

.ff-poppins {
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 300;
}


@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


.fs-25 {
    font-size: 25px;
}

.description p {
    font-size: 16px;
    font-weight: 700;
}

.description p a {
    color: black;
}

.page-body p {
    font-weight: 500;
    font-size: 17px;
}

@media screen and (max-width: 760px) {
    .logo { 
        width: 130px
    }

    .nav-item .nav-link {
        font-size: 20px;
        padding-right: 0px !important;
    }

    .nav-item .nav-link:first-child {
        margin-left: 2rem
    }

    .about-link {
        margin-left: 0px !important;
    }

    .contact-link {
        margin-left: 0px !important;
    }

    .hpage {
        min-height: 250px;
    }

    .ff-poppins {
        font-size: 12px;
    }

    .item:hover .item-description {
        font-size: 20px
    }
}