body{
    background-color: #caf0f8;
    color:#023e8a;
    text-align: center;
    font-size: larger;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 700;
}

header{ 
    background-color: #0077b6;
    border-radius: 10px;
    padding: 2opx;
    margin:2rem auto;
}

a{
    text-decoration: none;
    color: #00b4d8;
}

.nav{
    display: flex;
    justify-content: space-between;
}

#logo{
    font-weight: 900;
    font-size: xx-large;
    font-style: italic;
}

.intro, .overview, .dashboard, .more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem auto; 
    max-width: 900px;
    padding: 2rem;
    background-color: #90e0ef;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.overview{
    flex-direction: row-reverse;
}

.intro img, .overview img, .dashboard img, .more img {
    border-radius: 20px;
}

footer{ 
    background-color: #0077b6;
    border-radius: 10px;
    padding: 2opx;
    margin:2rem auto;
    align-items: center;
}

