body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.bg_img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    object-fit: cover;
}

.bg_overlay {
    background-color: rgba(0, 0, 0, 0.35);
    background-blend-mode: multiply;
    z-index: 0;
}

.link{
    color: white;
transition: color linear 300ms;
}

.link:hover{
    color:#ADD8E6FF;
}

.logo{
    width: auto;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

    img{
        max-width: 175px;
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
}

@media screen and  (max-width: 992px) {
    .logo{
        width: 135px;
        padding: 12px;
    }
}