h1 {
    color: white;
    font-family: "Tilt Warp", sans-serif;
    font-size: 7rem;
    line-height: 1;
    font-weight: lighter;
    margin: 0;
}

h1 span {
    color: #E83151;
}

.default-btn {
    margin-right: 40px;
}

.buttons {
    display: flex;
    width: 100%;
}

.input-session {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.input-session label {
    color: white;
    font-family: 'Quicksand';
}

.input-session input {
    border: solid 1px white;
    background-color: rgba(217, 217, 217, 0.5);
    height: 4vh;
    border-radius: 10px;
    padding: 0.8vw 0.8vw; 
    color: white;
    width: 50%;
    font-size: 1.5rem; 
    outline: none;
    font-family: 'Tilt Warp';
    text-transform: uppercase;
}

.input-session input::placeholder {
    color: white;
    text-transform: none !important;
}

#error-showing {
    margin: 0;
    color: #E83151;
    font-family: 'Quicksand';
    font-weight: bold;
}

.tournament {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    width: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.tournament a {
    width: 10rem;
    margin-right: 0;
}

.tournament p {
    width: 20rem;
    color: white;
    font-family: 'Quicksand';
    text-align: center;
    font-size: 1.1rem;
}

.tournament img {
    width: 100%;
}

.separator {
    visibility: hidden;
}

@media screen and (max-width: 1024px) {
    .separator {
        visibility: visible;
        margin-bottom: 8vw;
        margin-top: calc(8vw + 5px);
        border-top: white 1px solid;
        height: 1px;
        width: 80vw;
        z-index: 2;
    }

    #description {
        text-align: center;
        font-size: 1.5rem !important;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: center;
    }

    .default-btn {
        margin-right: 0;
    }

    .buttons {
        width: 100%;
        gap: 20px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .input-session input {
        width: 100%;
        font-size: 1rem;
        height: 6vh;
    }

    .tournament {
        margin: 0;
        width: 80vw !important;
        gap: 5vw;
        margin-bottom: 10vw;
        position: static; /* enlève le positionnement fixe */
        width: 90%;
    }

    .tournament p {
        margin: 0;
        font-size: 1.5rem;
        width: 80%;
    }
}

@media screen and (max-width: 540px) {
    .tournament p {
        font-size: 1rem;
    }

    #description {
        font-size: 1.3rem !important;
    }

    a {
        font-size: 1rem;
    }
}
