    /* Home Page */

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main > .title-box {
    margin-top: 7%;
    margin-bottom: 3%;
    /* border: 1px solid; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

main > .title-box > h1 {
    margin: 0;
    width: 200px;
    text-align: center;
}

main > .title-box > h1::after {
    content: "";
    position: relative;
    left: 10%;
    bottom: -4px;
    width: 80%;
    display: block;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline 0.6s ease 0.2s forwards;
}

main > .title-box > label {
    width: 232px;
    font-style: italic;
    text-align: right;
    opacity: 0;
    transform: translateY(-9px);
    animation: fadeIn 4s ease 0.8s forwards;
}

main .wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    flex: 0 0 80%;
    overflow-y: auto;
    align-items: center;
}

main .wrapper .frame {
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    animation: fadeInFull 1.5s ease 1.5s forwards;
}
