:root {
    --background: #1e2124;
    --block: #282b30;
    --subblock: #36393e;
}


html {
    background-color: var(--background);
    color: white;
    font-family: 'Lato', monospace;
}

#heading-block {
    background-color:var(--block);
    margin-left: 7vw;
    margin-right: 7vw;
    margin-top: 50px;
    padding: 5px 15px;
    font-size: 3vw;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   
}

.subtext {
    font-size: 1vw;
    margin-top: 7vw;
    flex: 33%;
    margin-left: 15px;
}

#skylar-status-img {
    max-width: 250px;
    width: 50%;
    height: auto;
}

#skylar-status {
    margin: auto;
    flex: 33%;
    background: var(--subblock);
    max-width: 33%;
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 15px;
    border-radius: 10px;
}

#skylar-status img {
    border-radius: 10px;
}

#welcome-text {
    flex: 33%;
    margin-right: 15px;
    justify-content: center;
}

.topic-block {
    background-color: var(--block);
    margin: 3vw;
    max-width: auto;  
    text-align: center;
    border-radius: 10px;
    color: white;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    backdrop-filter: blur(0px);
}

.quote-box {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    backdrop-filter: blur(0px);
    padding: 1vw 2vw;
}

.quote-box:hover {
    animation-name: blur;
    animation-duration: 1s;
    backdrop-filter: blur(8px)
}

.quote-box:not(:hover) {
    animation-name: unblur;
    animation-duration: 1s;
}

.quote-box:hover h1, .quote-box:hover p  {
    animation-name: appear;
    animation-duration: 1s;
    opacity: 1;
}

.quote-box:not(:hover) h1, .quote-box:not(:hover) p  {
    animation-name: disappear;
    animation-duration: 1s;
}

.quote-box h1, .quote-box p {
    opacity: 0;
}

@keyframes unblur {
    from {backdrop-filter: blur(8px);}
    to {backdrop-filter: blur(0px);}
}

@keyframes blur {
    from {backdrop-filter: blur(0px);}
    to {backdrop-filter: blur(8px);}
}

@keyframes appear {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes disappear {
    from {opacity: 1;}
    to {opacity: 0;}
}

a:visited {
    color: white;
  }

@media screen and (max-width: 1130px) {
    #heading-block {
        flex-direction: column;
        text-align: center;
    }
    .subtext {
        font-size: 12px;
    }
    .column {
        flex: 50%;
        max-width: 50%;
    }
}
@media (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
}