html, body {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    position: relative
}

p {
    margin: 0;
    padding: 0;
}

.mainContainer {
    width: 100vw;
    height: 100vh;
    height: 100svh;
}

#languageSwitcher{
    font-family: 'Gills-Sans-MT-Regular';
    top: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    position: absolute;
    left: 2%;
    color: white;
}

#languagePopup{
    width: 70vw;
    display:none;
    z-index: 99999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50vw;
    background-color: #1A203F;
    border: 2px solid black;
    border-radius: 11px;
}

#globe{
    padding-right: 2vw;
    width: 8vw;
}

#languageTitle{
    width: 101.4%;
    position: absolute;
    top: -3px;
    left: -2px;
}

#languageText{
    text-transform: uppercase;
    font-size: 3.2vw;
}

#languageBtnContainer{
    top: 45%;
    position: absolute;
    width: 80%;
    display: flex;
    flex-direction: column;
    height: 45%;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
}

.whiteBtns{
    background-color: white;
    text-align: center;
    border-radius: 18px;
    border: 2px solid black;
    font-family: 'Gills-Sans-MT-Regular';
    width: 100%;
    padding-top: 2%;
    padding-bottom: 2%;
    font-size: 3.6vw;
}

#blurBackground{
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 3;
}
