@import "./colors_marketing.css";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&family=Roboto+Condensed:wght@300&display=swap');

html,
body {
    background-color: var(--marketing-page-background-color);
    margin: 0;
    min-width: 250px;
    text-align: center;
    height: 100%;
}

main {
    display: flex;
    height: 100%;
    padding: 0 40px;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 800px;
}

.link_to_reserve_address {
    z-index: 5;
    margin-top: 50px;
    margin-bottom: 40px;
    color: var(--marketing-page-link-color);
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.background_div {
    z-index: 1;
    width: calc(100% + 80px);
    max-width: 1300px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('../media/marketing_page_background-small.png');
    background-repeat: no-repeat;
    background-size: 170%;
    background-position: 40% bottom;
}

.logo_container {
    z-index: 3;
    margin: auto auto 30px auto;
    max-width: 400px;
    width: 100%;
}

.index_logo {
    z-index: 5;
    width: 100%;
}

.button_container {
    display: flex;
    z-index: 5;
    margin: auto;
}

h1 {
    z-index: 5;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--marketing-page-title-color);
    font-size: 36px;
    margin-bottom: 10px;
    margin-top: 40px;
}

p {
    z-index: 5;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    color: var(--marketing-page-text-color);
    font-size: 24px;
    margin-top: 0;
}

.launching_text {
    z-index: 5;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    color: var(--marketing-page-text-color);
    font-size: 20px;
}

.link_to_social {
    width: 30px;
    height: 30px;
    margin: 0 40px;
}

.link_to_social img {
    max-width: 30px;
}

@media(hover) {
    .logo_container:hover {
        cursor: pointer;
    }
}

@media only screen and (max-width: 550px) {
    .link_to_social {
        margin: 0 25px;
    }
}

@media only screen and (max-width: 500px) {
    main {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 450px) {
    .background_div {
        background-size: 200%;
    }

    h1 {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 400px) {
    .link_to_social {
        margin: 0 20px;
    }
}


@media only screen and (max-width: 350px) {
    .link_to_social {
        margin: 0 15px;
    }
}

@media only screen and (max-width: 300px) {
    main {
        padding: 0 25px;
    }
    .link_to_social {
        margin: 0 10px;
    }
}

@media only screen and (max-width: 250px) {
    .link_to_social {
        margin: 0 7px;
    }
}

@media only screen and (min-width: 600px) {
    h1 {
        margin-bottom: 30px;
    }

    .background_div {
        background-size: 150%;
        background-position: 40% bottom;
    }
}

@media only screen and (min-width: 800px) {
    .background_div {
        background-size: 130%;
        background-position: 40% bottom;
    }
}

@media only screen and (min-width: 1000px) {
    .background_div {
        background-size: 110%;
        background-position: 30px bottom;
    }
}

@media only screen and (min-width: 1300px) {
    .background_div {
        background-size: 100%;
        background-position: 40px bottom;
        max-width: 1500px;
    }
}

@media only screen and (max-height: 900px) and (min-width: 1000px) {
    .background_div {
        max-width: 1000px;
        background-size: 100%;
    }
}

@media only screen and (max-height: 750px) and (min-width: 900px) {
    .background_div {
        max-width: 1000px;
        background-size: 100%;
    }
}

@media only screen and (max-height: 650px) and (min-width: 550px) {
    .background_div {
        max-width: 800px;
        background-size: 110%;
        background-position: -10px bottom;
    }
}

@media only screen and (max-height: 550px) {
    .background_div {
        display: none;
    }

    h1 {
        margin-top: 0;
    }
}

@media only screen and (min-width: 250px) {
    html,body,main{
        overflow-x: hidden;
    }
}