/**** Reset ****/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/**** Style général de la page ****/

body {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    /* background-color: rgb(236, 61, 61);*/
    background: linear-gradient(0deg, #095228 50%, #d4423e 50%);
    color: #ffffff;
}

header,
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 15px;
}

header h1 {
    text-align: center;
    font-weight: bold;
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.main__content {
    margin: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 100%;
    border: 2px solid #ffffff;
    background-color: #eec66c;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 40px;
}

h2 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.time {
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
}

footer span {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

/**** Responsive design ****/

@media screen and (max-width: 472px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    .time {
        font-size: 20px;
    }
}