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

/*The header*/
.header-container {
    background-color: #1F2937;
    padding: 20px;
    color:#F9FAF8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    margin-left: 80px;
    text-align: left;
    flex: 2.5 0 0;
}

.header-item {
    text-decoration: none;
    padding: 2px;
    border: solid white 1px;
    margin: 8px;
    text-align: center;
    flex: 1 0 0;
}


/*The title*/
.title-container {
    background-color: #1F2937;
    padding: 25px;
    color:#F9FAF8;
    display: flex;
    align-items:center;
    justify-content: center;
}

.title-container img{
    max-width: 100%;
    max-height: 100%;
}

.title-item h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 10px;
}

.title-item p {
    margin-top: 0%;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.title-item {
    margin: 10px;
    text-align: left;
    flex: 1 1 0;
}

.title-item .button {
    margin: 5px;
    padding: 8px;
    text-align: center;
    color:#000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: none;
    background-color: paleturquoise;
    border-radius: 5px;
    border-bottom:solid #d4d4d4 2px;
    border-right: solid #d4d4d4 1px;
}

/*The main part*/
.main-container {
    background-color: #FFF;
    padding: 25px;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.maintitle-item h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 20px;
}

.maintitle-item {
    text-align: center;
    flex: 1 0 100%;
}

.main-item {
    text-align: center;
    flex: 1 1 15%;
    margin: 10px;
    padding: 1px;
    border-right: solid #777777 2px;
    border-bottom: solid #777777 2px;
    border-top: solid #d4d4d4 1px;
    border-left: solid #d4d4d4 1px;
}

.main-item img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;

}

/*The quote*/
.quote-container {
    background-color: #E5E7EB;
    padding: 25px;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-wrap: wrap;
}

.quote h1 {
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
    font-size: 36px;
    font-weight: 200;
    text-align: center;
}

.quote {
    margin-right: 50px;
    margin-left: 50px;
    padding: 8px;
    flex: 1 0 100%;
    align-items: center;
}

.author p {
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
    font-weight: 200;
    text-align: right;
}

.author {
    margin-right: 50px;
    margin-left: 50px;
    flex: 1 0 100%;
    align-items: flex-end;
}
/*The block to join the team*/
.footer-container {
    background-color:paleturquoise;
    margin: 70px;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items:center;
    justify-content: center;
}

.footer-item .button {
    padding: 8px;
    color: rgb(2, 30, 54);
    text-decoration: none;
    border-right: solid #777777 1px;
    border-bottom: solid #777777 2px;
    border-top: solid #FFF 2px;
    border-left: solid #FFF 2px;
    border-radius: 4px;
    text-align: center;
}

.footer-item h1{
    color: rgb(2, 30, 54);
    text-align: left;
}

.footer-item p{
    color: rgb(2, 30, 54);
    text-align: left;
    width: 400px;
}

.footer-item {
    padding: 10px;
    margin: 5px;
}

/*The copyright footer*/
.copyright-container {
    background-color:#1F2937;
    padding: 25px;
    display: flex;
    align-items:center;
    justify-content: center;
    color: #FFF;
}

.copyright-container a{
    color: #FFF;
    text-decoration:underline;
}