body {
    font-family: "Raleway";
    margin: 0px;
    background-color: #F6F7F8;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    cursor: pointer;
    color: #2A3647;
}

a li.active {
    background-color: rgba(9, 25, 49, 1);
    color: white;
    font-weight: bold;
}

.content {
    display: flex;
    flex-direction: column;
    animation: fadeInBlur 0.25s ease forwards;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
}

.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}


.logo {
    scale: 1.2;
    position: absolute;
    top: 50%; 
    left: 50%;
    width: 500px;
    transform: translate(-50%, -50%); 
    animation: logoToCorner 1.5s ease forwards;
    display: flex;
    justify-content: start;
    align-items: start;
}

@keyframes fadeInBlur {
    0% {
        filter: blur(100px); 
    }
    100% {
        filter: blur(0px); 
    }
}

@keyframes logoToCorner {
    0% {
        width: 500px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        width: 100px; 
        top: 62px;
        left: 84px;
        transform: translate(0, 0); 
    }
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: rgba(42, 54, 71, 1);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: visibility 0s, opacity 0.5s ease-in-out;
    opacity: 0;
    z-index: 999;
  }
  
  #snackbar.visible {
    visibility: visible;
    opacity: 1;
  }
  
  #snackbar.hidden {
    opacity: 0;
  }
  
  @media(max-width : 1100px) {

    @keyframes logoToCorner {
        0% {
            width: 500px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        100% {
            width: 84px; 
            top: 34px;
            left: 33px;
            transform: translate(0, 0); 
        }
    }
}

@media(max-width: 850px) {
    @keyframes logoToCorner {
        0% {
            width: 500px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        100% {
            width: 63px; 
            top: 44px;
            left: 40px;
            transform: translate(0, 0); 
        }
    }
}

@media(max-width: 560px) {
    @keyframes logoToCorner {
        0% {
            width: 500px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        100% {
            width: 46px; 
            top: 51px;
            left: 47px;
            transform: translate(0, 0); 
        }
    }
}


 