@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background: linear-gradient(135deg,rgba(242, 148, 0, 0.3) 0%, rgba(0, 158, 224, 0.3) 100%);
    margin: 0;
    font-family: Montserrat, serif;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.layout-container {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.info-container {
    background-color: #F29400;
    padding: 8px 16px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 16px;
}

.info-container span {
    color: white;
    font-size: 1.7em;
}

.coming-soon {
    margin: 64px 16px;
    color: #009EE0;
    font-size: 8em;
    font-weight: 800;
    text-align: center;
}

.instagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 64px;
    cursor: pointer;
    text-decoration: none;
}

.instagram img {
    width: 100px;
    margin-bottom: 16px;
}

.instagram span {
    font-size: 1.3em;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .coming-soon {
        margin: 32px 16px;
        font-size: 4em;
        line-height: 1em;
        font-weight: 800;
    }

    .info-container span {
        font-size: 1.2em;
    }

    .instagram {
        margin: 32px 16px;
    }
}