* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

.header {
    background-image: url("../images/d2bee09011d0ef5c5aab59b69714774a45812d7d.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    color: #F4F4F4;
}

.topnav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-weight: 400;
    font-size: 28px;
}

.navbar {
    display: flex;
    gap: 40px;
}

.navbar a {
    font-weight: 400;
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.badge-img {
    position: absolute;
    top: 22px;
    right: 15px;
    width: 20px;
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    line-height: 160%;
    max-width: 440px;
    margin-bottom: 30px;
}

.search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 5px;
}

.search input {
    border: none;
    outline: none;
    background: transparent;
    color: white;
    padding: 10px 15px;
    width: 250px;
}

.search input::placeholder {
    color: #ddd;
}

.search button {
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
}