body {
    font-family: 'Oxanium', cursive;
    background: #400C57;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
.title {
    font-size: calc(4vw + 1vh);
    width: 100%;
    text-align: center;
    color: #e5e5e5;
}
.menu {
    background: #400C57;
    height: 7vh;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right:0;
    z-index: 999
}
.logo {
    height: 7vh;
    outline: 0;
    border: 0;
}
.secondary-title {
    font-size: calc(1vw+1.5vh);
    width: 100%;
    text-align: center;
    color: #e5e5e5;
    text-decoration: none;
}
.home-div{
    width: 100%;
    text-align: center;
}
.home {
    width: calc(15vw+10vh);
}
.secondary-title a {
    color: #e5e5e5;
    text-decoration: none;
    -webkit-tap-highlight-color: 0;
}
.third-title {
    margin-top: 2vw;
    font-size: calc(1vw+1vh);
    width: 100%;
    text-align: center;
    color: #e5e5e5;
    text-decoration: none;
}
.flag {
    width: calc(3.5vw + 2vh);
    border-radius: 1vw;
    float: right;
    margin-right: 1vw;
    margin-left: 1vw;
}
.checkbox {
    position: relative;
    top: -0.3vw;
    border-radius: 20px;
    border-color: white;
    border-width: 20px;
}
.checkbox:before {
    content:'';
    position: absolute;
    width: calc(3vw + 1.5vh);
    height: calc(1.2vw + 1vh);
    background-color: white;
    border-radius: 2px;
    border-color: white;
    border-width: 20px;
}
.checkbox:checked:before {
    background-color: white;
}
.checkbox:after {
    content:'';
    position: absolute;
    left: 0;
    width: calc(1.5vw + 0.75vh);
    height: calc(1.2vw + 1vh);
    background-color: #400C57;
    border-radius: 25px;
    transition: 0.25s ease-in-out;
    border: 2px solid #400C57;
    box-sizing: border-box;
}
.checkbox:checked:after {
    left: calc(1.5vw + 0.75vh);
    border: 2px solid #400C57;
}
#polish {
    display: block;
    animation: fadeInAnimation ease 1.5s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
        @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
}
#english {
    display: none;
    animation: fadeInAnimation ease 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}