/* 
original sea-green: 32A287
*/

body {
    background-color: #F1FFE7;
    color: #5B5B5B;
    font-family: "Roboto", sans-serif;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    font-size: 20px;
    line-height: 1.5;
}



.top-bar {
    background-color: #32A287;
    color: #D8FCD9;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
}

.top-bar h1 {
    font-size: 88px;
    align-self: center;
}

.link-buttons {
    display: flex;
    justify-content: left;
    gap: 40px;
    align-items: center;
}

.link-buttons .button {
    color: #D8FCD9;
    font-weight: 800;
    font-size: 20px;
    background-color: #32A287;
    border-radius: 8px;
    padding: 16px 28px;
}



.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 80px;
    gap: 20px;
}

.main-container h1 {
    font-size: 40px;
    padding: 30px
}

.sections-container {
    display: flex;
    justify-content: space-evenly;
    gap: 80px;
    align-items: stretch;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    /*background-color: #32A287;*/
    color: #D8FCD9;
    padding: 0 0;
    text-align: center;
}


.sections-container img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12% 12% 0 0;
    margin-bottom: 0;
    display: block;
}

.sections-container h2 {
    background-color: #32A287;
    margin: 0;
    font-size: clamp(12px, 2.5vw, 28px);
    padding: 20px 16px 20px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    text-wrap: balance;
}

.sections-container p {
    background-color: #5B5B5B;
    color: #F1FFE7;
    border-radius: 0 0 40px 40px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 16px 30px 28px 30px;
}

