/* RESET */
body, html {
    margin: 0;
    padding: 0;
    font-family: "Georgia", serif;
}

/* HERO BACKGROUND */
.hero {
    height: 100vh;
    background: url("images/balloon.jpg") no-repeat center center/cover;
    position: relative;
}

/* DARK OVERLAY */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.25);
}

/* NAVBAR */
.navbar {
    position: absolute;
    top: 20px;
    width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    color: white;
    z-index: 2;
}

.logo {
    font-size: 22px;
}

.menu a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* CENTER CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: normal;
    margin: 0;
}

/* BUTTONS */
.buttons {
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    margin: 10px;
    display: inline-block;
}

/* Primary button */
.primary {
    background: white;
    color: black;
}

/* Secondary button */
.secondary {
    border: 1px solid white;
    color: white;
}