.container {
    /* border: 2px solid salmon; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.main {
    border: 1px solid #11324D;
    border-radius: 25px;
    box-shadow: 10px 10px 5px #9D9D9D;
    display: flex;
    width: 60%;
    height: 50%;
    align-items: center;
    gap: 2em;
    padding: 0px 15px;
    background-color: #FEFBF3;
}


.section {
    /* border: 1px solid slateblue; */
    width: 100%;
    height: 90%;
    overflow: scroll;
}

.left-side {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.right-side {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.right-side>*:last-child {
    align-self: center;
}

.right-side>*:nth-child(2) {
    align-self: center;
}

img {
    height: 100%;
}

.header>p {
    font-family: cursive;
    color: #FF7878;
    font-size: 40px;
    font-weight: 500;
}

p {
    font-family: 'Gill Sans', sans-serif;
}


p, footer {
    /* border: 1px solid seagreen; */
    font-size: 1em;
}

.main-0>*:last-child {
    align-self: flex-end;
}

.footer {
    position: absolute;
    z-index: 10;
}