@charset "UTF-8";

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}


.section_wrapper {
    width: 60%;
    border: 3px solid #181B38;
}

@media screen and (max-width: 800px) {
    .section_wrapper {
        width: 80%;
    } 
}

.section_inner {
    margin: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text_wrapper p:nth-of-type(3) {
    margin-top: 20px;
}

.section_text {
    font-size: 18px;
}

@media screen and (max-width: 830px) {
    .section_text {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .section_text {
        font-size: 14px;
    }
}

.section_text a {
    color: #00A4B7;
    text-decoration: underline;
}

.img_box {
    width: 100%;
    height: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
}