h1 {
    color: #012E40;
    font-size: xxx-large;
    font-weight: bolder;
    text-transform: uppercase;
    text-align: center;
}

.description {

    display: flex;
    flex-direction: row;
    height: 120px;
    margin: 50px auto;
    color: #012E40;
    width: 960px;

    & .logo-container {
        width: 120px;
        background: #012E40;
    }

    & .desc {

        padding-left: 20px;
        padding-bottom: 20px;
        flex: 1;

        & h3 {
            margin-top: 0;
        }

        border-bottom: 3px solid #012E40;
        border-left: 3px solid #012E40;

    }

}

form.search-form {

    display: flex;
    width: auto;

    gap: 50px;

    & label {
        flex: 1;
    }

    & input[ type="text"] {
        width: 100%;
        padding: 10px;
        font-size: large;
        outline: none;
        background-color: #F2E3D5;
        border: none;
        border-bottom: solid 3px #012E40;
        color: #012E40;
        /*border-radius: 25px;*/
        text-align: center;

        &::placeholder {
            color: #012E40; /* ou la couleur de ton choix */
            opacity: 0.5;     /* important sur certains navigateurs */
        }
    }

    & input[ type="submit"] {

        background: #012E40;
        color: #F2E3D5;
        width: 150px;
        cursor: pointer;
        border-radius: 25px;

        font-size: large;
        border: none;
        outline: none;
        transition: 250ms;

        &:hover {
            background: #026773;
        }
    }

}

.resources-list {
    width: 700px;
    margin: auto auto 100px;

    display: flex;
    flex-direction: column;
    gap: 30px;

    & h2 {
        text-align: center;
        color: #012E40;
        margin: 100px;
    }

    & .resources-item {
        margin: 20px 0;
        background-color: #012E40;
        padding: 20px;
        border-radius: 20px;
        color: #F2E3D5;

        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;

        & > a {
            text-decoration: none;
            color: #F2E3D5;
            display: block;
            padding: 10px 20px;
            border-radius: 20px;

            background-color: #024959;
            transition: 250ms;
            font-size: small;
            align-self: flex-start;

            &:hover {
                background-color: #3CA6A6;
            }

        }

        & .resources-item-desc {
            flex: 1;

            & h3 {
                margin: 0;

            }

            & ul.tags {
                list-style-type: none;
                display: flex;
                flex-direction: row;
                gap: 10px;
                padding-left: 10px;
                margin: 10px;

                & li {
                    background-color: #026773;
                    padding: 5px 10px;
                    border-radius: 20px;
                    font-size: small;
                    display: flex;
                    align-items: center;
                    text-align: center;
                    transition: 250ms;

                    & > a {
                        text-decoration: none;
                        color: #F2E3D5;
                    }

                    &:hover {
                        background-color: #3CA6A6;
                    }

                }
            }
        }
    }
}