.main-container {
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.header-container {
    text-align: center;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.project-container {
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    max-width: 350px;
}

.project-info-container {
    text-align: center;
}

.badge-container {
    display: flex;
    align-content: center;
    justify-content: center;

}

.store-badge-container {
    width: 150px;
    margin: 5px;
}

.ordobike-logo-container {
    max-width: 350px;
    padding: 20px;
    height: 125px;
    display: flex;
    align-items: center;
    border-style: solid;
    border-radius: 8px;
    border-color: rgb(76, 175, 80);
    background-color: rgb(76, 175, 80);
    color: white;
    margin: 20px;
}

.ordopet-logo-container {
    max-width: 350px;
    padding: 20px;
    height: 125px;
    display: flex;
    align-items: center;
    border-style: solid;
    border-color: rgb(33, 150, 243);
    border-radius: 8px;
    background-color: rgb(33, 150, 243);
    color: white;
    margin: 20px;
}

.contact-container {
    text-align: center;
}

