/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Departure Mono';
    src: url('../fonts/departure-mono/DepartureMono-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Global styles */
body {
    font-family: 'Departure Mono', 'dico-mono', mono;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5rem;
    color: #000;
    background-color: #fff;
    max-width: 1280px;
}

h1 {
    font-size: 5.625rem;
    font-weight: 300;
    line-height: 6.25rem;
}

h2 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 4.5rem;
}

h3 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3.5rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.625rem;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25rem;
}

h6 {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
}

footer {
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

/* Class styles */
.hero-title {
    margin-bottom: 2.5rem;
}

.hero-image {
    width: 100px;
    height: 100px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}