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