body {
    background-color: #040066;
    font-family: "Helvetica Neue", Helvetica;
    font-weight: 300;
    color: #FDE7FD;
    font-size: 24px;
}

main {
    display: flex;
    flex-direction: column;
    margin: 100px 0px;
    align-items: center;
    height: 100vh;
    gap: 30px;
    height: auto;
    flex: 1;
}
.intro {
    margin: 0px;
}

.logo {
    width: 400px;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
}


.header {
    font-weight: 400;
    font-size: 32px;
    display: flex;
    flex-direction: column;
}

.header > * {
    margin: 4px
}

.tournament-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tournament-info > * {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px
}

.costs {
    display: flex;
    flex-direction: row;
    gap: 16px
}

.costs > * {
    margin: 4px
}

#crossed-out-fee {
    text-decoration: line-through;
}

.signup-button {
    display: inline-block;
    background: #FDE7FD;
    color: #040066;
    font-size: 16px;
    font-weight: bold;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
}

.sign-up-button:hover { 
 cursor: pointer;
}

#coming-soon {
    font-style: italic;
    font-size: 16px;
    margin: 0px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    margin: 0px;
}

.instagram {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    align-items: center;
    gap: 8px;
    margin: 0px;
}

i {
    font-size: 30px;
}

.email { 
    font-size: 16px;
    margin: 0px;
}

@media (max-width: 1400px) {
    .logo {
        position: static;
        width: 250px;
        height: auto;
        margin-top: 20px;
    }

    main {
        margin-top: 40px;
    }

    .header,
    .tournament-info,
    .costs,
    footer {
        text-align: center;
    }

    body {
        margin: 16px;
        font-size: 18px;
    }
}