.maincontent {
    max-width: 100%;
    border: 0;
}

/* SPRING - HERO */
.spring-hero {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #001a37;
    color: white;
}

.spring-hero h1 {
    font-size: 50px;
}


/* SPRING - MAIN CONTENT */
.spring-row {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0;
    gap: 30px;
    flex-wrap: wrap;
}

.spring-image-wrap {
    width: 800px;
    height: 400px;
    max-width: 90vw;
    overflow: hidden;
    border-radius: 10px;
}

.spring-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spring-body {
    max-width: 90vw;
    width: 800px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.spring-body h2 {
    font-size: 1.75rem;
    margin: 0 0 25px 0;
}

.spring-body p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.spring-body a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.spring-body a:hover {
    text-decoration: underline;
}


/* SPRING - BUTTON ROW */
.spring-button-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spring-button-row {
    width: 800px;
    max-width: 90vw;
    column-gap: 50px;
    row-gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
}

.spring-button-row .spring-button {
    padding: 20px 30px;
    background-color: #0079c0;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 5px;
    transition: all 0.3s linear;
}

.spring-button-row .spring-button:hover {
    background-color: #001a37;
    text-decoration: none;
    color: white;
}

@media (max-width: 650px) {
    .spring-button-row {
        grid-template-columns: 1fr;
    }

    .spring-button-row .spring-button {
        width: 50%;
        justify-self: center;
    }
}