#main {
    position: relative;
    top: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#mainArticle {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: max(600px, 75vh);
    width: calc(100% - max(15vw, 60px));
    max-height: 1000px;
    background: rgba(15, 15, 15, 0.85);
    border-radius: 50px;
}

#mainArticle > h1 {
    text-decoration: none;
    color: white;
    background: linear-gradient(1deg in oklab, hsla(44, 100%, 70%, 0.7), hsla(44, 100%, 50%, 0.7));
    filter: drop-shadow(2px 2px 1px hsla(44, 100%, 70%, 0.3));
    font-size: 60px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: min(16vw, 128px);
    font-weight: 900;
    font-style: italic;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    z-index: 0;
}

#mainArticle > h4 {
    background: hsla(0, 0%, 100%, 0.7);
    filter: drop-shadow(2px 2px 1px rgba(255, 255, 255, 0.3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: min(32px, 4vw);
    font-weight: 300;
    margin: 0;
    margin-left: 60px;
    margin-right: 60px;
    margin-top: 20px;
}