/*color */

/* primary (headers/nav/text on light background) - #2C3E50

accent (buttons, highlights, icons,) - #D2042D

secondary (adjacent nung accent red for the background ng buttons and shit) - #BDC3C7

highlight (color pag hinover nung cursor yung text) - #7F8C8D

background (bg ng site itself for both web and mobile) - #ECF0F1 
                font-family: "Stack Sans Text", sans-serif;
                            font-family: "Poppins", sans-serif;
*/

body{
    margin: 0;
    background-color: #ECF0F1!important;
}

.section1{
    display: flex;
    background-color:#2C3E50;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 5vh 0px;
    gap: 20px;

    & > img{
        height: 6vh;
    }

    & > .container {
        width: 70%;
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);

        & > h1 {
            text-align: center;
            color: #2c3e50;
            font-family: "Poppins", sans-serif;
            font-weight: 700;
            font-size: 25px;
        }

        & > .date {
            text-align: center;
            font-size: 14px;
            color: #777;
            margin-bottom: 25px;
            font-family: "Stack Sans Text", sans-serif;
        }

        & > h2 {
            color: #34495e;
            margin-top: 25px;
            border-left: 4px solid #3498db;
            padding-left: 10px;
            font-family: "Stack Sans Headline", sans-serif;
            font-weight: 600;
            font-size: 20px;
        }

        & > p {
            line-height: 1.6;
            margin: 10px 0;
            font-family: "Stack Sans Text", sans-serif;
            font-size: 14px;
            font-weight: 300;
        }

       & >  .highlight {
            background: #f1f9ff;
            padding: 15px;
            border-left: 5px solid #3498db;
            border-radius: 5px;
            margin-top: 20px;
            font-family: "Stack Sans Text", sans-serif;
            font-size: 14px;
            font-weight: 300;
        }

       & >  .btn-back {
            display: inline-block;
            margin-top: 30px;
            padding: 10px 20px;
            background: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: 0.3s;
            font-family: "Stack Sans Text", sans-serif;
            font-size: 14px;

            &:hover {
                 background: #2980b9;
             }
        }

    }
}