html, body{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: white;
}
body{
    background: linear-gradient(to bottom right,#591296,#7f59d8);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: center;
    flex-direction: column;
}

.title{
    position: relative;
}

.title h1{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    margin: 10px 0;
}




.title h1 .a{
    display: inline-block;
    width: 0;
    overflow: hidden;
    animation: a 1000ms ease-in-out forwards 500ms;
}

@keyframes a{
    0%{
        width: 0;
    }
    100%{
        width: 33px;
    }
}

.title h1 .tld{
    display: inline-block;
    overflow: hidden;
    animation: tld 1000ms ease-in-out forwards 500ms;
}

@keyframes tld{
    0%{
        width: 100px;
    }
    100%{
        width: 0;
    }
}

.title h1 .surname{
    display: inline-block;
    width: 0;
    overflow: hidden;
    animation: surname 1000ms ease-in-out forwards 1500ms;
}

@keyframes surname{
    0%{
        width: 0;
    }
    100%{
        width: 195px;
    }
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: max-content;
}

nav a{
    width: 200px;
    height: 50px;
    text-align: center;
    margin: 5px 0;
    position: relative;
    text-decoration: none;
    font-size: 20px;
    color: white;
    z-index: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-sizing: border-box;
    outline: 1px solid white;
}

nav a .logo{
    width: 100%;
    height: 100%;
    transition: 300ms;
    position: absolute;
    bottom: 0;
    left: 0;
    display: grid;
    place-items: center;
    height: 0%;
    background: white;
    color: #6c36b7;
}

nav a:hover .logo{
    height: 100%;
}


.admin{
    position: absolute;
    bottom: 10px;
    right: 10px;
    text-decoration: none;
    color: white;
    padding: 10px;
    opacity: 0;
    transition: 300ms ease-in-out;
}

.admin:hover{
    opacity: 1;
}

@media screen and (max-width: 800px){
    nav{
        width: 100%;
    }
    nav a{
        width: 80%;
    }
}