section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}



.hero-title:nth-child(1) {
    margin-top: 0;
}


section:nth-child(2) {
    margin-top: 3.5rem;
}


section a {
    text-decoration: none;
    color: var(--main);
    padding: 1rem 0;
    border-top: 2px solid var(--main);
    width: 80%;
    text-align: left;
    font-size: 2rem;
}

@media screen and (orientation: portrait) {
    section a {
        width: 100%;
        font-size: 1.3rem;
        text-align: center;
    }
}


section iframe {
    width: 80%;
    border: none;
    border-bottom: 2px solid var(--main);
    aspect-ratio: 5/2;
    padding-bottom: 0.5rem;
}

@media screen and (orientation: portrait) {
    section iframe {
        width: 100%;
        margin-top: 1rem;
    }
}


section:nth-child(3) .hero-title {
    padding-top: 3rem;
}



form {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


label {
    font-size: 1.5rem;
    width: 100%;
    text-align: left;
    padding-top: 1.5rem;
}


input,
textarea {
    background-color: #DAD9D4;
    border: none;
    border-radius: 0.1rem;
    color: var(--main);
    font-size: 1.5rem;
    position: relative;
    width: calc(100% - 2px);
    line-height: 2.5rem;
    outline: none;
    position: relative;
}

.line {
    width: 100%;
    border-bottom: 2px solid var(--main);
    height: 0.25rem;
}


button {
    transition: 0.5s ease-in;
    background-color: var(--complement);
    border-radius: 0.1rem;
    color: var(--bg);
    border: none;
    padding: 0.3rem 2rem;
    font-size: 1.5rem;
    font-family: "Noto Serif Display", serif;
    width: fit-content;
    margin-top: 0.25rem;
}


section:nth-child(5) {
    height: 40vh;

    display: block;
}

section:nth-child(5) img {
    opacity: 0.3;
    width: 25%;
    z-index: -1;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(000%);

}