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

/* STYLES */
.app {
    font-family: "Lucida Console", "Monaco", monospace;
    font-size: 14px;
    height: 100vh;
    width: 100vw;
    /* border: 1px dashed red; */
    background-color: #000;
}

.navbar {
    height: 100px;
    width: 100vw;
    /* border-bottom: 1px solid var(--white); */
    background-color: #000;
    padding: 0 35px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_logo {
    height: inherit;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.navbar__brand {
    font-size: larger;
    color: #fff;
}

.navbar__nav {
    /* margin-left: auto; */
}

.navbar__link {
    padding: 12px 20px;
    border-radius: 500px;
    text-decoration: none;
    text-align: center;
    /* color: var(--dark-brown); */
    color: #fff;
}

.nav__link:hover {
    /* background-color: #c1d0b5; */
}

.app__container {
    /* height: calc(100vh - 100px); */
    position: relative;
    top: 100px;
}

#main {
    border-bottom: 1px solid #fff;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    background-image: url("legzdinap.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#bg-img {
    background-image: url("legzdinap.png");
    background-position: center;
}

#contact {
    /* border-top: 1px solid var(--white); */
    background-color: #000;
    height: 50vh;
    /* margin-top: -20vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.contact__header {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

.contact__form {
    display: flex;
    height: 10vh;
    justify-content: center;
    column-gap: 3rem;
}

.contact__form input {
    border: 1px solid #fff;
    border-radius: 500px;
    padding: 1rem;
    background-color: #000;
}

.contact__form button {
    border: 1px solid #fff;
    border-radius: 500px;
    padding: 1rem;
    color: #000;
    font-weight: bold;
    background-color: #fff;
}

input ::placeholder {
    color: #fff;
}

#email {
    width: 24vw;
}

#submit {
    width: 8vw;
}

.contact__link {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2em;
}

@media screen and (max-width: 600px) {
    #main {
        height: 50vh;
    }

    #contact {
        height: auto;
        padding-top: 5vh;
    }

    .contact__header {
        font-size: 1rem;
        padding-bottom: 2rem;
    }

    .contact__form {
        height: auto;
        column-gap: 1.5rem;
    }

    #email {
        width: 60%;
    }
}
