.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0 auto;
}

main {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    align-items: center;
    justify-content: center;
    gap: 64px;
    margin: 0 auto;
}

#header {
    color: var(--text-color);
    padding: 1rem;
    text-align: center;
}

#header h1 {
    font-size: 3rem;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.75rem;
    line-height: 3rem;
    margin-right: -20px;
}

#header span {
    font-size: 1.5rem;
    letter-spacing: 0.25rem;
}

#skills {
    gap: 0.5rem;
}

#links {
    gap: 2rem;
    letter-spacing: 2px;
}

#skills-logos {
    min-width: max-content;
}

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

.button-container {
    display: flex;
    column-gap: 1rem;
    row-gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.link-button {
    background-color: var(--background-color);
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 24px;
    border-width: 1px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

.social-links img {
    width: 26px;
}

.corners {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.corners > img {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.3;
}

.corners .ctl {
    left: 10px;
    top: 10px;
    transform: rotate(90deg);
}


.corners .ctr {
    right: 10px;
    top: 10px;
    transform: rotate(180deg);
}

.corners .cbl {
    right: 10px;
    bottom: 10px;
    transform: rotate(270deg);
}

.corners .cbr {
    left: 10px;
    bottom: 10px;
}