*
{
    margin: 0;
    padding: 0;
    font-family: Comfortaa, cursive;
    scroll-behavior: smooth;
    box-sizing: border-box;
    color: antiquewhite;
}

body
{
    overflow-x: hidden;
    background-color: rgb(30, 30, 30);
}

.divider
{
    height: 3px;
    width: 50vw;
    margin: 5px auto;
    border-top: 3px solid white;
}

.menu
{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: rgba(0.12, 0.02, 0.04, 0.5);
    z-index: 1000;
}

.menu .menuList
{
    list-style-type: none;
    overflow: hidden;
}

.menu .menuList .menuElement
{
    float: left;
}

.menu .menuList .menuElement a
{
    display: block;
    color: antiquewhite;
    text-align: center;
    padding: 1vh 2vw;
    text-decoration: none;
    font-size: 1.3vh;
    border-radius: 2vw;
    transition: 0.5s ease;
}

.menu .menuList .menuElement a:hover
{
    color: rgb(30, 30, 30);
    background-color: antiquewhite;
}

.anchor-top
{
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.anchor-top a
{
    display: block;
    color: rgb(30, 30, 30);
    background-color: antiquewhite;
    text-align: center;
    text-decoration: none;
    padding: 1.5vh 2.5vw;
    font-size: 1vh;
    border-radius: 1.5vw;
    transition: 0.5s ease;
}

.anchor-top a:hover
{
    color: antiquewhite;
    background-color: rgb(30, 30, 30);
}

@media (orientation: landscape)
{
    .menu .menuList .menuElement a
    {
        font-size: 1.3vw;
    }

    .anchor-top a
    {
        font-size: 1vw;
    }
}