@import "nav.css"; 
@import "contentAreas.css"; 

body {
    font-family: 'Poppins', sans-serif;
    scroll-snap-type: y mandatory;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: normal;
    align-content: normal;
    font-family: monospace;
    overflow: hidden;
    height: 96vh;
}

#mainContent {
    display: flex;
    flex-flow: column nowrap;
    flex: none;
    gap: 2em;
    overflow: auto;
    outline: 1px dashed lightgray;
    width: 100vw;
    height: 93vh;
    scroll-snap-type: y mandatory;
}

div.block {
    text-align: center;
    scroll-snap-align: start;
    flex: none;
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    margin-bottom: 10vh;
}
  
footer {
    text-align: center;
    font-size: x-small;
    color:#666;
}

#lastUpdate::before {
   content: '\2022';
   padding: 0 1em;
}

@media screen and (max-width: 900px) {
    div.block {
        min-height: 99vh;
    }
}   
@media screen and (max-width: 600px) {
  
    div.block {
        flex-direction: column;
    }

}
