@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;  
}

body{
    background: #222;
    font-family:Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
    font-weight: 400;
    margin: 0 100px;
}
.container{
    display: block;
    border-radius: 25px;
    background: #340143;
    width: 100%;
    margin: 10px auto;
}
header{
    border-radius: 15px;
}

.title{
    display: block;
    border-radius: 25px;
    width: 100%;
    margin: 10px auto;
    background: #340143;
}

h1{
    text-align: center;
    color: white;
}
h3{
    text-align: center;
    color: white;
}

.content{
    width: 100%;
    display: block;
    border-radius: 25px;
    margin: 10px auto;
    background: #340143;
}

.logo{
    float: left;
    padding-right: 20px 0;
}
nav{
    float: right;
}
nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
nav li{
    display: inline-block;
    margin-left: 70px;
    margin-right: 10px;
    padding-top: 35px;
    position: relative;
}
nav a{
    color: white;
    text-transform: uppercase;
}
nav a:hover{
    color: yellow;
}
nav a::before{
    content: '';
    display: block;
    height: 5px;
    background-color: yellow;
    position: absolute;
    top: 0;
    width: 0%;
    transition: all ease-in-out 250ms; 
}
nav a:hover::before{
    width: 100%;
}
body{
    background-color: #081D01;
    color: yellow;
    font-family:Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
    font-weight: 400;
}