body {
    background-color: black;
}



#mainContent {
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%,-50%);
    width: 60%;
    text-align: center;
    padding: 5vh;
    box-sizing: border-box;


    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.1);


    font-family: 'Fraunces';
    
}

#title {   
    display: block;
    font-size: 5vh;
    font-weight: 600;
}

#subtitle {   
    display: block;
    font-size: 3vh;
    font-style: italic;
}

#buttonsContainer {
    width: 100%;
    display: flex;  
    justify-content: space-evenly;
    align-items: stretch;
    flex-flow:wrap;
    margin-top: 5vh;
}

@media (max-aspect-ratio: 1/1) {
    #buttonsContainer {
      flex-direction: column;
    }

    #buttonsContainer div {
        margin-bottom: 1vh;
    }
}


#buttonsContainer div {
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);

    padding: 1vh;
    transition: 0.2s;
    cursor: pointer;
    display: flex;
}

#buttonsContainer div:hover {
    background: rgba(255, 255, 255, 0.2);
}

#buttonsContainer div span{
    display: inline-block;
    line-height: 3vh;
}

#buttonsContainer div img{
    display: inline-block;
    width: 3vh;
    height: 3vh;
}


#backgroundContainer {
    z-index: -10;
    top: 0;
    left: 0;
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#backgroundImage {
    width: 100%;
    min-width: 100vw;
    min-height: 100vh;
}