@font-face {
    font-family: 'CaviarDreams';
    src: url(../../hub/generalStylingFont/CaviarDreams/CaviarDreams.ttf) format('truetype');
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    gap: 10vh;
    margin: 5vh 0vw 5vh 0vw;
    background-repeat: no-repeat;
}

a {
    font-size: 3em;
    font-family: 'CaviarDreams', sans-serif;
    color: white;
    background-color: rgba(255, 255, 255,0.06);
    text-decoration: none;
    width: 80%;
    border: 2px solid white;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: background-color 1s,-webkit-backdrop-filter 0.2s, backdrop-filter 0.2s, color 0.3s, border 50ms;
    
    padding: 3vw;
}

a:hover {
    color: rgb(35, 29, 29);
    background-color: rgba(255, 255, 255,0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

a:active {
    border: 2px solid rgb(35, 29, 29);
}

a h2{
    text-align: center;
    margin: 0vh 0vw 3vh 0vw;
    
}

.date {
    font-size: 50%;
    text-shadow: 1px 1px 2px rgb(35, 29, 29);
}


@media screen and (max-width: 800px) {
    a {
        font-size: 2em;
    }
}

@media screen and (max-width: 600px) {
    a {
        font-size: 1.2em;
    }
}