*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.3)),url(../assets/media/images/img6.jpg);
    background-size: cover;
    background-position: center;
}
nav
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.logo
{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30px;
    color: whitesmoke;
    letter-spacing: 1.5px;
    padding: 0 100px;
    line-height: 60px;
    font-weight: bold;
    cursor: pointer;
}
nav ul
{
    float: left;
    margin-right: 20px;
    padding: 0 100px;
}
nav ul li
{
    list-style: none;
    margin: 0 5px;
    display: inline-block;
    line-height: 60px;
    position: relative;
}
nav ul li a
{
    font-size: 15px;
    font-weight: bold;
    color: whitesmoke;
    text-decoration: none;
    padding: 7px 14px;
    text-transform: uppercase;
}
nav ul li::after
{
    content: '';
    width: 0px;
    height: 3px;
    background: orange;
    position: absolute;
    left: 0;
    bottom: 3px;
    transition: 0.2s;
}
nav ul li:hover::after
{
    width: 100%;
}
.content
{
    width: 100%;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    text-align: center;
    color: wheat;
}
.content h1
{
    font-size: 50px;
    margin-top: 80px;
}
.content p
{
    font-weight: 100px;
    margin: 20px 100px;
    line-height: 25px;
    
}
.btn
{
    width: 200px;
    padding: 15px 0;
    margin: 20px 10px;
    border-radius: 25px;
    background: transparent;
    border: 2px solid orange;
    text-align: center;
    font-weight: bold;
    color: white;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.hover-effect
{
    border-radius: 25px;
    position: absolute;
    background: orange;
    width: 0;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}
.btn:hover .hover-effect
{
    width: 100%;
}
.btn:hover
{
    border: none;
}