@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --red: rgba(225,138,122);
    --blue: rgba(192,216,227);
    --green: rgba(238,185,162);
    --orange: rgba(167,141,138);
    --yellow: rgba(253,246,242);
}

* {
    font-family: "Inter",  sans-serif;
}

a {
    text-decoration: none;
}

body {
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    background: var(--yellow);
}

#baseDiv {
    display: flex;
    flex-direction: column;
    background: var(--yellow);
    width: 100%;
    padding: 0;
    margin: 0;
}

#baseDiv > * {
    display: grid;
}

#header, #sideMenu {
    background-color: var(--red);
    border-radius: 10px;
}

#header {
    /* grid-template-columns: 3fr 2.5fr; */
    display: grid;
    grid-template-rows: 1.5fr .5fr;
    /* box-shadow: 0px 2px 2px gray; */
    justify-content: center;
    color: white; 
    font-weight: 800;
}

#siteTitleAndLogo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.siteHeaderPiece#title {
    text-align: center;
    font-size: clamp(1.5rem, 10vw, 5rem); 
}

#sideMenu {
    display: flex;
    gap: 15px;
    
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

#navigationMenu {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.icon {
    width: 1.25rem;
    fill: white;
    height: auto;
    padding-right: .125rem;
}

#dashboardIcon {
    width: 2.5rem;
    fill: white;
    height: auto;
    
}

.menuNavItem {
    display: flex;
    font-size: 1rem;
    padding: .5rem;
}

#dashboardLink {
    color: white;
    font-size: 2rem;
    padding-left: 0;

}

#contentsMenu {
    display: grid;
    grid-template-columns: 2fr .75fr;
    gap: 15px;
    grid-column: 1/3;
}

#contentsMenu > * {
    display: grid;
}

#weeksList {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

#weeks {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.weekPiece {
    background: var(--green);
    border-radius: 10px;
    padding: 10px;
}

.sectionTitle {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: bold;
    color: black;
}

#announcementsTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

#announcements {
    gap: 15px;
    display: flex;
    flex-direction: column;
    grid-column: 2/3;
    padding: 20px;
}

#announcementList {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /*background-color: white;*/
    background: var(--blue);
    border-radius: 10px;
    padding: 10px;
}

.announcementPiece {
    display: grid;
    grid-template-rows: .125fr 1fr;
    /* border: 2px solid white; */
    border-radius: 10px;
    
}

.announcementTitle, .weekTitle {
    font-size: 1.25rem;
    padding: 0;
    font-weight: bold;
}

@media (max-width: 600px){
    #contentsMenu {
        display: flex;
        flex-direction: column;
    }
}