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

body {
    font-family: 'Montserrat';
}

/* NAVBAR */
.navbar-desktop {
    display: none;
}

.navbar-mobile {
    display: flex;
}

.main-text img {
    height: 250px;
}

.main-text {
    margin-top: 60px;
    z-index: 2;
}

.main-text h2 {
    position: absolute;
    text-align: center;
    top: 15%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    color: white;
}

.main-text h4 {
    position: absolute;
    text-align: center;
    color: white;
    top: 26%;
    left: 50%;
    width: 95%;
    transform: translate(-50%, -50%);
}

.main-text a {
    color: black;
    text-decoration: none;
    background-color: white;
    border: 1px solid white;
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    transition: 0.3s;
    position: absolute;
    top: 28%;
    left: 50%;
    width: 95%;
    transform: translate(-50%, -50%);
}

.main-text a:hover {
    border: 1px solid white;
    color: white;
    background-color: transparent;
}

.main-text-desktop {
    display: none;
}

/* CONTACT FORM */
.contact-form {
    margin-top: 30px;
    text-align: center;
}

.contact-form h1 {
    margin-bottom: 15px;
}

.contact-form input {
    font-family: 'Montserrat';
    width: 90%;
    border: 2px solid black;
    border-radius: 15px;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

.contact-form textarea {
    font-family: 'Montserrat';
    width: 90%;
    border: 2px solid black;
    border-radius: 15px;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    height: 120px;
}

.contact-form button {
    font-family: 'Montserrat';
    color: white;
    text-decoration: none;
    background-color: black;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 20px;
    transition: 0.3s;
    cursor: pointer;
    width: 90%;
    transition: 0.3s;
    margin-bottom: 20px;
}

.contact-form button:hover {
    color: black;
    background-color: white;
    border: 1px solid black;

}

@media (min-width: 768px) {
    .navbar-mobile {
        display: flex;
    }

    .navbar-desktop {
        display: none;
    }

    /* MAIN TEXT */
    .main-text {
        display: none;
    }

    .main-text-desktop {
        display: block;
    }

    .main-text-desktop {
        margin-top: 60px;
        z-index: 2;
    }

    .main-text-desktop img {
        height: 350px;
        object-fit: cover;
    }

    .main-text-desktop h1 {
        position: absolute;
        text-align: center;
        top: 22%;
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
        color: white;
    }

    .main-text-desktop h3 {
        position: absolute;
        text-align: center;
        color: white;
        top: 28%;
        left: 50%;
        width: 95%;
        transform: translate(-50%, -50%);
    }

    .main-text-desktop a {
        color: black;
        text-decoration: none;
        background-color: white;
        border: 1px solid white;
        color: #000;
        padding: 10px 20px;
        border-radius: 20px;
        transition: 0.3s;
        position: absolute;
        top: 58%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .main-text-desktop a:hover {
        border: 1px solid white;
        color: white;
        background-color: transparent;
    }

    /* CONTACT FORM */
    .contact-form input {
        width: 90%;
    }

    .contact-form textarea {
        width: 60%;
    }

    .contact-form button {
        width: 60%;
    }
}

@media (min-width: 1200px) {
    .navbar-mobile {
        display: none;
    }

    .navbar-desktop {
        display: flex;
    }

    /* MAIN TEXT */
    .main-text {
        display: none;
    }

    .main-text-desktop {
        display: block;
    }

    .main-text-desktop {
        margin-top: 60px;
        z-index: 2;
    }

    .main-text-desktop img {
        height: 400px;
        object-fit: cover;
    }

    .main-text-desktop h1 {
        position: absolute;
        text-align: center;
        top: 25%;
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
        color: white;
    }

    .main-text-desktop h3 {
        position: absolute;
        text-align: center;
        color: white;
        top: 30%;
        left: 50%;
        width: 95%;
        transform: translate(-50%, -50%);
    }

    .main-text-desktop a {
        color: black;
        text-decoration: none;
        background-color: white;
        border: 1px solid white;
        color: #000;
        padding: 10px 20px;
        border-radius: 20px;
        transition: 0.3s;
        position: absolute;
        top: 57%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .main-text-desktop a:hover {
        border: 1px solid white;
        color: white;
        background-color: transparent;
    }

    /* CONTACT FORM */
    .contact-form label {
        text-align: left;
    }

    .contact-form input {
        width: 60%;
    }
}