h1,
h2,
p,
a,
button {
    font-family: var(--font-preset);
}

h1 {
    color: var(--color-yellow);
    font-size: 48px;
    line-height: 150%;
    font-weight: bold;
}

h2 {
    color: var(--color-foreground);
    font-size: 36px;
    line-height: 100%;
    font-weight: 600;
}

p {
    color: var(--color-foreground);
    font-size: 16px;
    line-height: 100%;
    width: 100%;
    text-align: justify;
}

a {
    text-decoration: none;
    color: var(--color-yellow);
    font-weight: bold;
}

.subtitle {
    color: var(--color-yellow);
    font-size: 36px;
    line-height: 100%;
    font-weight: 600;
}

body {
    background: var(--color-background);
    margin: 0px 400px;
    min-height: 100vh;
}

main {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-main);
    gap: 60px;
    padding: 100px 0;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 150px;
}

section:first-child {
    align-items: center;
}

.languages {
    background: var(--color-dark);
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 150px;
}

.language {
    height: 36px;
    width: 36px;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    width: 100%;
}

a.btn {
    text-decoration: none;
    background: var(--color-foreground);
    width: 300px;
    height: 100px;
    padding: 12px 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-main);
    font-size: 36px;
    line-height: 100%;
    font-weight: 600;
    text-align: center;

    border-radius: 12px;
    transition: outline 0.15s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
}

a.btn:hover {
    box-shadow: 0px 0px 21px var(--color-yellow);
    outline: 5px solid var(--color-foreground);
    outline-offset: -1px;
}

img {
    height: 100%;
    width: 100%;
}
