:root {
    --main-white: #E8E8E8;
    --main-theme: #B90504;
    --secondary-theme: #F6F1D1;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}

.main-background {
    min-height: 100vh;
    background: url("./img/new_york.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.upper-bar {
    display: flex;
    justify-content: flex-start;
    padding-top: 3rem;
    padding-right: 3rem;
    padding-left: 3rem;
    color: var(--main-color);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 6rem;
}

.logo-text {
    color: var(--main-white);
    font-size: 3rem;
}

.main-content-container {
    display: flex;
    justify-content: center;
}

.main-content {
    margin-top: 2rem;
    padding: 3rem;
    max-width: 50vw;
}

.main-content-text {
    text-align: center;
    
}

.main-content-text h1 {
    letter-spacing: 0.3rem;
    font-family: 'Anton', sans-serif;
    color: var(--main-white);
    font-size: 4rem;
}


.main-content-text p {
    color: var(--main-white);
    font-size: 2rem;
}

.main-content-buttons {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.main-content-buttons button {
    border-radius: 0.5rem;
    border-style: none;
    box-sizing: border-box;
    color: var(--main-white);
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all .3s;
}

.main-content-buttons .button1 {
    background-color: #0099ff;
}

.main-content-buttons .button1:hover {
    background-color: #0055bb;
}

.main-content-buttons .button2 {
    background-color: #888888;
}

.main-content-buttons .button2:hover {
    background-color: #444444;
}

footer {
    padding: 30px;
    color: white;
    background-color: black;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 1000px) {

    :root {
        font-size: 0.9rem;
    }

    .upper-bar {
        justify-content: center;
    }
    .main-content {
        margin-top: 0;
        max-width: 65vw;
    }
}

@media (max-width: 700px) {

    :root {
        font-size: 0.75rem;
    }

    .main-content {
        max-width: 80vw;
    }

    .main-content-buttons {
        grid-template-columns: 1fr;
    }
}