*{
    margin: 0;
    padding: 0;
}

header{
    height: 10vh;
    background-color:white;
    background-size: cover;
    background-position: center;
}

ul{
    float: left;
    list-style: none;
    margin-top: 35px;
    margin-left: 30px;
}

ul li{
    display: inline-block;
    
}

ul li a{
    text-decoration: none;
    color: #000;
    padding: 5px 20px;
    text-transform: uppercase;
    font-size: 90%;
    border: 1px solid transparent;
    transition: 0.6s ease;
    font-size: 150%;
    font-family: Oswald
}

ul li a:hover{
    border-bottom: 2px solid rgb(167, 41, 41);
    color: #000;
}

ul li.active a{
    border-bottom: 2px solid rgb(167, 41, 41);
    color: #000;
}



.header{
    text-align: center;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Oswald;
    margin-bottom: 12px;
}


.header h1{
    color: #000;
    font-family: Oswald;
    font-size: 50px;
}

.header p{
    color: #000;
    font-family: Oswald;
    font-size: 20px;
}

.form{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 100px;
}

input {
    width: 100%;
    margin: 20px 0;
    background: rgb(0, 0, 0,0);
    border: none;
    border-bottom: 1px solid rgb(235, 23, 8);
    font-size: 20px;
}

#msg {
    margin-top:  60px;    
}

:: ::-webkit-input-placeholder{
    color: rgb(226, 19, 19);
    font-size: 12px;
    letter-spacing: 2px;
}

button{
    padding: 20px 32px;
    font-family: Oswald;
    font-size:  25px;
    background:  #af0c0c;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
    color: #fff;
}