body {
    font-family: sans-serif;
    background-color: #fef0e0;
    color: #3c3067;
    padding: 0;
    margin: 0;
    height: 100vh
}

*, *::before, *::after {
    box-sizing: border-box;
}

.logo {
    padding: 15px;
    height: auto;
    max-width: 60%;
    max-height: 95vh;
    border-radius: 25px;
}

.title {
    color: #3c3067;
    text-transform: uppercase;
    margin-bottom: 5px;
}

a {
    color: #3c3067;
}

.mt {
    margin-top: 10px;
}

.annees {
    color: #3c3067;
    font-weight: bold;
}

.blue {
    color: #3c3067;
}

.centered {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 5px 0;
}

.label {
    background-color: #FFB74D;
    color: #3c3067;
    border-radius: 2px;
    padding: 3px;
    font-size: 15px;
    margin: 5px;
}

.content {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
}

.container {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 16px;
    color: #000;
    padding: 25px 20px;
    box-shadow: 3px 2px 20px 1px #F3920040, 0 1px 1px 0 #F3920024, 0 1px 3px 0 #F3920022;
}

.no-space {
    margin: 0;
    padding: 0;
}

#select_container {
    margin-bottom: 10px;
}

select {
    width: 100%;
    max-width: 100%;
}

.actu {
    font-size: 13px;
    border-radius: 2px;
    margin-bottom: 20px;
}

#validation-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex {
    display: flex;
}

.flex_column {
    flex-direction: column;
}

.flex_row {
    flex-direction: row;
}

.flex_wrap {
    flex-wrap: wrap;
}

.flex_align_center {
    align-items: center;
}

.flex_content_center {
    justify-content: center;
}

#validate-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #FFB74D;
    color: #3c3067;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.grid {
    display: grid;
    grid-template-columns: 50% 50%;
    height: 100%;
}

.image {
    opacity: 0.3;
}

.year_img {
    font-size: 2.5vw;
    color: #3c3067;
    font-weight: bold
}


.button {
    display: flex;
    background-color: white;
    color: #3c3067;
    padding: 15px 32px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 1px 1px 10px 1px #F3920040, 0 1px 1px 0 #F3920024, 0 1px 3px 0 #F3920022;
    flex-direction: column;
}

.univ_logo {
    width: 42px;
    height: 22px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 3px;
}

.card {
    margin: 10px;
    text-align: start !important;
}

.card .card_body {
    width: 340px;
}

.card ul {
    padding-left: 20px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.button:hover {
    box-shadow: 1px 1px 10px 1px #3c306780, 0 1px 1px 0 #3c306764, 0 1px 3px 0 #3c306722 !important;

}

/* Rounded border */
hr.rounded {
    border-top: 4px solid #bbb;
    border-radius: 4px;
    width: 50%;
    margin-top: 32px;
    margin-bottom: 32px;
}

@media (min-width: 1100px) {
    .year_img {
        font-size: 1.5em;
    }
}

@media (min-width: 1500px) {
    .year_img {
        font-size: 2em;
    }
}

@media (max-width: 1100px) {
    .content {
        width: 75%;
    }

    .grid {
        grid-template-columns: 100%;
    }

    .image {
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.2;
        filter: blur(1em);
    }
}

@media (max-width: 800px) {
    .content {
        width: 90%;
    }

    ul {
        padding-left: 20px;
    }
}

@media (max-width: 500px) {
    .card{
        width: 90%;
    }
    .card .card_body {
        width: unset;
    }
}

@media (max-width: 300px) {
    .content {
        width: 95%;
    }
}
