.boxes-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.boxes {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 85%;
    margin: 50px 0;
}
.box {
    width: 600px;
    height: 700px;
    background-color: rgba(183, 226, 240, 0.247);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    margin: 20px;
}
.box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 7px black;
}

.box img {
    height: 270px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.box-text {
    flex: 1;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border: 2px solid rgba(0, 0, 0, 0.356);
    border-top: none;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.box-text h2 {
    font-size: 200%;
    margin: 0;
}
.box-text h3 {
    font-size: 145%;
}
.box-text p {
    font-size: 115%;
}

.box-text-frame-button {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: end;
}

.box-text-button {
    text-decoration: none;
    font-size: 130%;
    font-weight: 450;
    color: black;
    padding: 10px 40px;
    border: 2px solid black;
    border-radius: 25px;
    background-color: rgba(171, 224, 233, 0.116);
    transition: 0.3s ease-in-out;
}
.box-text-button:visited {
    color: black;
}
.box-text-button:focus {
    color: black;
}
.box-text-button:hover {
    background-color: rgba(61, 83, 87, 0.466);
    color: white;
}
.boxes-section-start-text {
    max-width: 80%;
}
.boxes-section-start-text h2 {
    font-size: 200%;
}
.boxes-section-start-text p {
    font-size: 135%;
}
