@font-face {
    font-family: 'Sunflower';
    src: url('../fonts/Sunflower-Bold.woff') format("woff");
    font-weight: bold;
}

@font-face {
    font-family: 'Sunflower';
    src: url('../fonts/Sunflower-Medium.woff') format("woff");
    font-weight: normal;
}

@font-face {
    font-family: 'Sunflower';
    src: url('../fonts/Sunflower-Light.woff') format("woff");
    font-weight: 300;
}

body {
    background-image: url('../images/background.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

span {
    font-family: 'Sunflower', sans-serif;
    font-weight: 300;
    font-size: 27px;
    color: #928A94;
}

p {
    font-family: 'Sunflower', sans-serif;
    font-weight: normal;
    font-size: 35px;
    margin: 0 0 15px 0;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0;
}

.logo {
    text-align: center;
}

.logo-img {
    width: 240px;
}

.logo-text {
    text-align: center;
    padding-top: 3%;
}

.launch-text {
    text-align: center;
    padding-top: 5%;
}

.input-container {
    text-align: center;
}

input {
    margin-top: 1%;
    border-radius: 8px;
    width: 410px;
    height: 58px;
    border: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-family: 'Sunflower';
    font-weight: 300;
    outline: 0;
    border: 2px solid white;
    box-sizing: border-box;
    padding: 0;
}

input[type="text"]:focus {
    
    border: 2px solid #F9D1D1;
}

.submit-button {
    background-color: black;
    border: none;
    border-radius: 8px;
    width: 435px;
    height: 67px;
    margin-top: 1%;
    color: white;
    font-size: 25px;
    font-family: 'Sunflower';
    font-weight: 300;
    cursor: pointer;
    outline: 0;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.instagram-img {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.a {
    display: flex;
    align-items: center;
    color: black;
    font-family: 'Sunflower';
    font-size: 22px;
    font-weight: 300;
}

.footer {
    width: 30px;
    height: 30px;
    margin-right: 10%;
}

@media (max-width: 768px) {
    body {
        background-image: url('../images/background-mobile.svg');
        background-size: cover;
    }

    main {
        min-height: 90vh;
    }

    .logo-text {
        margin-top: 4%;
    }

    .launch-text {
        margin-top: 13%;
        padding: 0;
    }

    .logo-img {
        width: 150px;
    }

    span {
        font-family: 'Sunflower', sans-serif;
        font-weight: 300;
        font-size: 15px;
        color: #928A94;
    }

    p {
        font-family: 'Sunflower', sans-serif;
        font-weight: normal;
        font-size: 19px;
        margin: 0 0 8px 0;
        padding: 0;
        white-space: pre-wrap;
    }

    input {
        margin-top: 5%;
        font-size: 18px;
        width: 323px;
        height: 55px;
    }

    .button-img {
        width: 45%
    }

    .submit-button {
        width: 323px;
        height: 55px;
        margin-top: 3%;
        font-size: 18px;
    }

    
.a {
    font-size: 18px;
}

    .footer {
        width: 20px;
        height: 20px;
    }
}