html {
    background-color: #F7F7F7;
    font-size: 16px;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", 
  Helvetica, Arial, "Lucida Grande", sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
    color: #333333;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding-left: 3rem;
    padding-right: 3rem;
}

header, main, aside {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header img {
    width: 25rem;
    height: auto;
    aspect-ratio: 1024 / 241;
}

main, aside {
    text-align: center;
}

main h1 {
    margin-bottom: 0.5rem;
}

main h2 {
    margin-top: 0.5rem;
}

aside + div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

aside div a {
    margin-left: 1rem;
    margin-right: 1rem;
}

aside div img {
    height: 3rem;
    width: 3rem;
    background-color: #036A38;
    padding: 0.25rem;
    border-radius: 50%;

}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: normal;
}

p {
    font-size: 1.56rem;
}

#hiringLink {
    font-size: 1.3rem;

    position: fixed;
    bottom: 0;
    right: 0;
    margin: 3rem;
    text-align: center;

    padding: 1.5rem;
    background-color: #036A38; 
    color: #fff; 
    text-decoration: none;
    border-top-left-radius: 50%; 
    border-top-right-radius: 50%; 
    border-bottom-left-radius: 50%; 
    border-bottom-right-radius: 0; 

    width: 4rem;
    height: 4rem;

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

@media only screen and (max-width: 1000px) {
    html {
        font-size: 25px;
    }

    body {
        min-height: 100dvh;
    }
}