*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(dev-800x450.jpg);
    background-size: cover;
    background-position: center;
}
nav{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    padding-top: 40px;
}
.logo{
    color: white;
}
.logo span{
    color: gold
}
nav ul li{
    list-style-type: none;
    display: inline-block;
    padding: 10px;
}
nav ul li a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}
nav ul li a:hover{
    color: gold;
    transition: .3s;
}
button{
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background-color: gold;
    transition: .7;
}
button:hover{
    transform: scale(1.2);
    cursor: pointer;

}