.main {
    width: 100%;
}



/* ---------------------------------------------------------------------------------------------------- WELCOME SCREEN --- */



.welcome-screen {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 80px);
    justify-content: center;
    align-items: center;
    text-align: center;
}



/* ---------------------------------------------------------------------------------------------------- DIVIDER --- */



.header-divider {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 7.5rem;
}

.header-divider-top {
    display: flex;
    position: relative;
    width: 100%;
    color: #FFA500;
}

.header-divider-top svg {
    display: block;
    width: 100%;
    height: 60px;
    transform: rotateX(180deg);
}

.header-divider-bottom {
    display: flex;
    position: relative;
    width: 100%;
    color: #FFA500;
    transform: rotateX(0deg);
}

.header-divider-bottom svg {
    display: block;
    width: 100%;
    height: 60px;
}

.header-divider-wave {
    fill: #FFA500;
    transform: rotateY(0deg);
    transform-origin: center;
}

.footer-divider {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 7.5rem 0;
}

.footer-divider-line {
    flex-grow: 1;
    height: 10px;
    background-color: #FFA500;
}

.footer-divider-icon {
    display: flex;
    position: relative;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 0.5rem;
    border: 3px solid;
    border-radius: 50%;
    border-color: #FFA500;
    background-color: #000000;
    color: #FFA500;
    font-family: "ADLaMDisplay", Arial, sans-serif;
    font-size: 1.5rem;
}



/* ---------------------------------------------------------------------------------------------------- CONTENT --- */



.content {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-section {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    gap: 5rem;
}

.content-block {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.text-block {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}