@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    
}

.background{
    background-image: url(./background.png);
    background-size: cover;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    
}

.logo{
    height: 10rem;
}

header nav ul{
    display: flex;
}

header nav ul li{
    list-style: none;
    padding: 0 2rem;
}

header nav ul li a{
    text-decoration: none;
}

header nav ul li a:hover{
    text-decoration: underline;
}

.hero{
    display: flex;
}

.hero .container{
    justify-content: center;
    padding: 50px 5rem 0 2rem;
    margin-left: 3rem;
}

p{
    margin-bottom: 10rem;
}

h2{
    font-size: 4rem;
    line-height: 50%;
}

h1{
    font-size: 100px;
}

.hero .container .button{
    text-decoration: none;
    font-size: 24px;
    margin-top: 20rem;
    padding: 20px;
    background-color: #497dc2;
    color: white;
}

.image{
    height: 48rem;
}