
body {
    background: linear-gradient(-45deg, rgb(6, 41, 37), rgb(4, 74, 66), rgb(58, 145, 136));
    background-size: 400% 400%;
    animation: gradient 20s ease infinite;
    height: 97vh;
    color: white;
}

@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

a:link {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
}

#name {
    top: 25px;
    left: 50px;
    position: fixed;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
}

.Nav {
    position: fixed;
    top: 40px;
    left: 50px;
    padding: 1% 1% 0 0;
    list-style: none;
}

#language_button {
    right: 10px;
    top: 10px;
}

.textbox {
    position: fixed;
    right: 2%;
    bottom: 2%;
    max-width: 350px;
}

li {
    line-height: 1.8;
}

li:hover {
    opacity: 40%;
}


.active {
    visibility: visible;
    opacity: 1;
    transition: opacity 1s linear;
}

.inactive {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 1s, opacity 1s linear;
}

.HeadText{
    font-size: large;
}


@media screen and (max-width: 900px){

    .textbox{
        position: absolute;
        bottom: 2%;
        right: 10px;
        max-width: 50%;
        max-height: 40%;
    }


}