*{
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
}
body{
    background-image: url(./bg01.jpg);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}
nav{
    width: 100%;
    height: 10vh;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    position: fixed;
    color: white;
}
.title{
    width: 25%;
    font-size: 1.2rem;
    text-align: center;
    cursor: pointer;
}
.menu{
    width: 30%;
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
}
.menu a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.menu a:hover{
    color: tomato;
}
.animation{
   font-style: italic;
   font-weight: 600;
   letter-spacing: 4px;
   animation: changesize 5s infinite linear;
   animation-timing-function: ease-in-out;
}
@keyframes changesize{
    from{
        color: aqua;
    }to{
        color: tomato;
    }
}
footer{
    background-color: rgba(0,0,0,0.7);
    bottom: 0;
    width: 100%;
    position: fixed;
    color: white;
    text-align: center;
    padding: 10px;
}
main{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.content{
    padding: 0;
    width: 90%;
    height: 50%;
    background-color: rgba(0,0,0,0.7);
    box-shadow: 8px 8px 5px -5px aqua;
}
.content h3{
    padding-top: 10px;
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px blue;
    text-transform: uppercase;
}
.content p{
    font-size: 25px;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 1px black;
    margin-top: 5%;
}
.content a{
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    transform: all .5s ease;
    border-radius: 4px;
    outline: none;
}
.btnone{
    background-color: aqua;
    padding: 10px 20px;
    color: black;
    margin: 10px;
}
.btnone:hover{
    background-color: brown;
    color: white;
}
.btntwo{
    background-color: tomato;
    padding: 10px 20px;
    color: black;
    margin: 10px;
}
.btntwo:hover{
    background-color: brown;
    color: white;
}