*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

h1{
    color: red;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 20px;
}

.info {
    display: flex;
    background-color: gold;
    padding: 20px;
    margin:auto;
    max-width: 500px;
    text-align: center;
    border-radius: 10px;
    color: navy;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 8px 16px gray
}

/* background image */
body {
    background-image: url('Images/team.jpg');
    background-position: center;
    background-repeat: no-repeat;
}

article {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    margin: auto;
    border: 20px;
    max-width: 700px;
    border-radius: 10px;
    box-shadow:gray
}

#title {
   display: flex;
    background-color: white;
    padding: 20px;
    margin:auto;
    max-width: 500px;
    text-align: center;
    border-radius: 10px;
    color: navy;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 8px 16px gray
}

img {
    width: 100%;
    height: auto;
    max-width: auto;
    display:block;
    margin: 0 auto;
    border: 20px;

}

.stitle {
    color: navy;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: gold;
    padding: 20px;
    margin: auto;
    border: 20px;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 8px 16px gray
}

footer {
    color: navy;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    margin: auto;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 8px 16px gray
}

.information {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
}


article {
    flex: 2;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    box-shadow: 0 8px 16px gray;
    display: flex;
    flex-direction: column;
    margin: auto;
}

aside {
    flex: 1;
    background-color: gold;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: gray;
    font-family: Arial, Helvetica, sans-serif;
    color: navy;
    margin: auto;
}

.sbs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* to make the past, present, future side by side */
.left, .center, .right {
    flex: 1;
    min-width: 200px;
}


