* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body,
.header-container1,
.main-section,
.quote-section,
.signup1{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.header-section{
    background-color: #01446F;
    padding: 50px 150px;
}

.top-layer,
.header-lower{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1150px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

#header-logo {
    margin-right: auto;
    height: 70px;
    width: 70px;
    border-radius: 10px;
}

.website-name {
    font-weight: 800;
    font-size: 70px; 
    font-family: 'Impact','Haettenschweiler', 'Arial Narrow Bold', sans-serif;
}

.website-description, .timeline {
    width: 550px;
    flex-wrap: wrap;
}

.timeline {
    margin-top: 40px;
    font-weight: 600;
    font-size: large;
}

.links{
    list-style-type:none;
}

.donation-button {
    margin-left: auto;
}

#donation-button {
    background-color: #FF8B3E;
    color:white;
    margin-left: auto;
}

a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.header-container1,
.header-photo {
    flex: 1;
}

.header-container1 {
    gap: 15px;
    color: white;
}

.header-photo{
    max-width: 550px;
    border-radius: 15px;
}

.smaller-main-photo{
    max-width: 400px;
    border-radius: 15px;
}

button {
    color: white;
    background: rgb(50, 132, 255);
    border: 0px;
    border-radius: 5px;
    width: 100px;
    padding:10px;
}

/* Main section */

.main-title{
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}

.main-section,
.quote-section {
    padding: 50px 150px;
    gap: 40px;
}

.subsection{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cards, .ebike {
    display: flex;
    flex-direction: column;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.ebike {
    width: 400px;
}

.cards img{
    width: 250px;
    margin-bottom: 10px;
}

.item-description{
    font-size: 15px;
    flex-wrap: wrap;
    text-align: center;
}

/* Only applicable to the e-bike page */
.ebike img{
    max-width: 500px;
    max-height: 500px;
    margin-bottom: 10px;
}

#ebikeVideo{
    width: 100%;
    height: 400px;
    object-fit: cover;
}


.item-description a{
    color:black;
    text-decoration: underline;
    background-color: yellow; 
}
/* Quote section */

.quote-section{
    background-color: gainsboro;
    justify-content: center;
    align-items: center;
    
}

.quote{
    font-family: 'Times New Roman', Times, serif;
    font-size: 28px;
}

.quotee{
    font-weight: 200;
    margin-left: auto;
    font-size: 24px;
}

/* Contribution Section */

.contribution-title{
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}

.contribution-section{
    padding: 10px 150px 30px;
    margin: 10px;
}

.contribution-background{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.row {
    display: flex;
    justify-content: space-between;
    border: solid 1px black;
    background-color: hsl(24, 100%, 67%);
    max-width: 800px;
}

.contribution-name, .contribution-role{
    width: 150px;
    padding: 10px;
    display: flex;
    flex-wrap: flex;
}

/* .contribution-name{
    margin-left: 400px;
} */

.contribution-highlight{
    /* margin-right: 400px; */
    width: 400px; 
    padding: 10px;
}


/* Footer */
.footer {
    background-color: #01446F;
    text-align: center;
}

.upper-footer{
    display:flex;
    justify-content: space-evenly;
}

.footer div {
    text-align: center;
    color: white;
    padding: 20px;
}

/* Signup section */

.signup-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-container {
    background-color: #FF8B3E;
    display: flex;
    justify-content: space-between;
    border: 1px solid black;
    border-radius: 10px;
    padding: -20px;
}

.signup1 {
    color: white;
}

#signup-big {
    font-size: 18px;
    font-weight: bold;
}

#signup-small {
    font-size: 12px;
    font-weight: 100;
    margin-top: -30px;
}

.signup-button {
    border: 1px solid black;
    background-color: rgb(87, 153, 240);
    border-radius: 5px;
    margin: 0 120px;
}


/* Placeholder image */
.placeHolder{
    margin: 20px;
    padding: 20px;
    background-color: white;
    color: black;
    width: 400px;
    height: 300px;
    text-align: center;
}