@font-face {
    font-family: 'Brandon Grotesque';
    src: url('fonts/BrandonGrotesqueW05Black/font.woff2') format('woff2'),
         url('fonts/BrandonGrotesqueW05Black/font.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('fonts/BrandonGrotesqueW05Regular/font.woff2') format('woff2'),
         url('fonts/BrandonGrotesqueW05Regular/font.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('fonts/BrandonGrotesqueW05Thin/font.woff2') format('woff2'),
         url('fonts/BrandonGrotesqueW05Thin/font.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    height: 800vh;
    overflow-x: hidden;
    background: #f9c22e;
}

#backgroundText {
    font-family: 'Brandon Grotesque', sans-serif;
    font-weight: 900;
    font-size: 1vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
    color: black;
    white-space: nowrap;
}

.message-box {
    font-family: 'Brandon Grotesque', sans-serif;
    font-weight: 300;
    font-size: 2vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: black;
    max-width: 70%;
    text-align: left;
}

.message-box h2 {
    font-weight: 900;
    margin-bottom: 20px;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.btn {
    font-weight: 900;
    padding: 10px 20px;
    border: 2px solid black;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    margin-left: 10px;
    cursor: pointer;
}

.btn:hover {
    background: black;
    color: white;
}

.hidden {
    display: none;
}

#zipInput {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

#zipCode {
    font-family: 'Brandon Grotesque', sans-serif;
    font-weight: 900;
    font-size: 4vw;
    text-align: center;
    border: none;
    background: transparent;
    color: black;
    outline: none;
    text-transform: uppercase;
}
