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

main {
    margin-top: 2em;
}

#hook {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    font-size: 21px;
    min-height: 80vh;
}

@media (max-width: 510px) {
    #hook {
        max-width: none;
    }

    main {
        margin-top: 4em;
    }
}

#hook p {
    font-size: 20px;
    padding: 1em;
    margin: 1em;
    border-radius: 10px;
    background-color: var(--text-color);
    color: var(--primary);
    box-shadow: 0px 0px 10px var(--box-shadow);
    transition: all 500ms;
}

#hook p:hover {
    transform: scale(1.05);
}

#hook a:hover {
    color: var(--text-color);
}

.secondary ul {
    padding: 1em 0;
    list-style-type: circle;
}

.secondary span {
    font-size: 14px;
    color: var(--text-color);
    opacity: 80%;
}

h2, h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
    padding: 0;
    margin: 0;
}

#hook h2 {
    font-size: 31.5px;
}

#skills {
    width: 100vw;
    display: flex;
    justify-content: center;
    background-color: var(--secondary);
    font-size: 18px;
    min-height: 100vh;
}

#skills > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 90vw;
    padding: 2em 0;
}

#skills > div > div:first-child {
    text-align: center;
    margin-bottom: 2em;
}

#skills > div > div:not(:first-child) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1150px;
}

#loving {
    display: flex;
    align-items: center;
    min-height: 100vh;
    font-size: 18px;
}

#loving > div {
    text-align: center;
    max-width: 1200px;
    margin: 25px;
    display: flex;
    flex-direction: column;
}

#loving h2 {
    padding: 0.5em 0;
}

#loving h3 {
    padding-bottom: 1em;
    font-size: 24px;
}

#loving h4 {
    padding: 0.5em 0;
}

#loving div {
    padding: 6em 0 1em 0;
}

#loving div p {
    line-height: 23px;
}

#loving p:not(#loving div p):last-child {
    border: 1px solid var(--secondary);
    background-color: var(--tertiary);
    box-shadow: 0px 0px 10px var(--box-shadow);
    padding: 1em;
}

#loving > div > div {
    border: solid 1px var(--tertiary);
    border-radius: 10px;
    margin: 20px;
    padding: 15px;
    text-align: center;
}

#loving > div div:first-of-type {
    border: none;
}

#loving > div div:first-of-type p {
    text-align: center;
}

#loving .conclusion {
    background-color: var(--header-background);    
}