@charset "UTF-8";

:root {
    --primary-color: #8C4130;
    --secondary-color: #A6511F;
    --tertiary-color: #BF7D2C;
    --quaternary-color: #818C2A;
    --quinary-color: #F2BC57;
    --title-color: #343a40;
    --text-color: #262626;
    --background-color: #DAD7CD;

    --font-default: "Roboto", sans-serif;
    --font-title: "DM Serif Text", serif;
}

* {
    margin: 0;
    padding: 0;
    font-family: var(--font-default);
    font-style: normal;
}


.hope {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: var(--quinary-color);
    height: 100%;
    
    img {
        margin-top: 60px;
        width: 100%;
        height: 200px;
    }
    
    main {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        text-align: start;
        padding: 20px 40px;
        
        h2 {
            font-family: var(--font-title);
            font-size: 1.8rem;
            color: var(--background-color);
        }
    
        p {
            width: 50%;
            color: var(--background-color);
            text-align: justify;
        }
    }
}

.conduct {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;

    .conduct-list {
        display: flex;
        flex-direction: row;
        column-gap: 20px;
        margin-bottom: 50px;
        margin-top: 30px;
    }

    .conduct-card {
        display: flex;
        flex-direction: column;
        width: 30%;

        article {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background-color: var(--tertiary-color);
            border-radius: 5px;
            height: 180px;
            padding: 20px;

            P {
                font-family: var(--font-title);
                font-size: 3rem;
                font-weight: 500;
            }
        }

        footer {
            padding: 10px 0;

            h3 {
                line-height: 2;
            }
        }
    }
}
