* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: black;
}

ul {
    display: flex;
    justify-content: space-evenly;
}

ul li {
    list-style: none;
}

ul li a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    padding: 10px 20px;
    border-radius: 5px;
    position: relative;
}

a:before {
    content: "";
    position: absolute;
    top : 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scale(0);
    transition: all .75s;
    transform-origin: left;
}

a:after {
    content: "";
    position: absolute;
    bottom : 0;
    left: 0;
    width: 100%;
    height: 7px;
    background-color: white;
    transform: scaleX(0);
    transition: all .75s;
    transform-origin: right;
}

ul li a:hover:before, 
ul li a:hover:after {
    transform: scale(1);
}

.content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    position: absolute;
    top: 30%;
    left : 50%;
    transform: translate(-50%, -50%);
} 

.content h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: whitesmoke;
    font-size: 50px;
    margin-bottom: 20px;
}   

.content p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: wheat;
    font-size: 20px;
    margin-bottom: 20px;
}

