body {
    background: #f2f2eb;
    font-family: 'Blinker', sans-serif;
}

h1 {
    font-size: 2.5rem;
}

p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

section.container {
    text-align: center;
    margin-top: 5rem;
}

section.about-me,
section.skills {
    width: 60rem;
    margin: 10rem auto;
}

section.about-me h2,
section.skills h2 {
    margin-bottom: 2rem;
}

.underline {
    width: 60rem;
    border-bottom: 0.1rem solid #000;
    margin: 0 auto 1rem;
}

svg.logo {
    width: 15%;
    max-width: 6rem;
    min-width: 5rem;
    padding: 1rem;
    fill: #5F9EA0;
}

.nav-bar {
    background: #3D3D3D;
    border-bottom: 0.15rem solid #5F9EA0;
}

.skill-icons {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
}

.skill-icon {
    place-self: center;
}

.skill-icon svg {
    width: 5rem;
}

.skill-icon svg:hover {
    fill: #ffc30b;
}


.skill-icon p {
    text-align: center;

}

.visually-hidden {
    visibility: hidden;
    position: absolute;
    top: -10;
    left: -10;
}

section.email-form {
    background-color: #5F9EA0;
    border-top: 0.15rem solid #3D3D3D;
}

div.form-wrapper {
    width: 60rem;
    display: flex;
    justify-content: space-around;
    margin: auto;
    padding: 5rem 0;
}

.email-form form {
    display: flex;
    flex-direction: column;
    width: 25rem;
}

.email-form form input,
.email-form form textarea {
    border: 0.15rem solid #3d3d3d;
    border-radius: 0.2rem;
    margin-bottom: 1rem;
    padding: 0.4rem;
    font-weight: 700;
}

.email-form form textarea {
    resize: none;
    padding-bottom: 5rem;
}

.email-form form button {
    border: 0.15rem solid #3d3d3d;
    background-color: #ffc30b;
    border-radius: 0.2rem;
    padding: 0.4rem;
    width: 10rem;
    font-weight: 700;
}

div.form-wrapper p {
    width: 25rem;
}