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

body {
    background-color: #F3C178;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}


#HeaderContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#Logo {
    display: block;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 1rem auto;
    transition: transform 0.3s ease;
}


#Container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ProjectBox {
    background-color: #FE5E41;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

.ProjectBox:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


#MorningFacts,
#Support,
#Ai,
#CT {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #FE5E41; 
}

#MorningFacts { background-image: url(""); color:rgb(0, 0, 0); font-size: 120%;}
#Support { background-image: url("Support.png"); }
#Ai { background-image: url("AI.png"); }
#CT { background-image: url("CT.png"); }


@media (max-width: 768px) {
    #HeaderContainer {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    #Logo {
        max-width: 200px;
        margin: 1rem 0;
    }

    #Container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .ProjectBox {
        width: 100%;
        min-height: 100px;
        font-size: 1rem;
        margin: 0;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    #Container {
        grid-template-columns: repeat(2, 1fr);
    }
}