body{
    background-color: white;
    height: 100%;
    width: 100%;
}

.main-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .8);
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: url("/assets/background_image.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.card{
    height: 10rem;
    width: 35rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 3rem;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 1rem;
    color: white;
    background-color: rgba(0, 0, 0, .2);
    backdrop-filter: blur(10px);
}