*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'josefin sans', sans-serif;
   
}

.hero {
    height: 100vh;
    width: 100%;
    background-image:url(/background.jpg);
    background-size: cover;
    background-position: center;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    padding-left: 10%;
    padding-right: 10%;
}

.logo{
    color: white;
    font-size: 28px;
}

span{
    color: #ea1538;
}

nav ul li{
    list-style-type: none;
    display: inline-block;
    padding: 10px 20px;
}

nav ul li a{
    color: whitesmoke;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover{
    color:  #ea1538;
    transition: .8s;
}

button{
    border: none;
    background: #ea1538;
    padding: 12px 30px;
    border-radius: 30px;
    color: whitesmoke;
    font-weight: bold;
    font-size: 15px;
    transition: .4s;
}

button:hover{
    transform:  scale(1.3);
    cursor: pointer;
}

button a{
    color: white;
    list-style-type:none;
    text-decoration: none;
}