*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: "Inter", serif;
    background-color: #002223;
    color: #fff;
    line-height: 1.2;
    word-break: break-word;
    background-image: url('../image/blueprint-board-green-desk.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 35% 85%;
}
.container {
    max-width: 1682px;
    padding: 0 17px;
    margin: 0 auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Kode Mono", serif;
}
.button {
    font-family: "Manrope", serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid;
}
.button-primary {
    background-color: #FFB201;
    color: #022E24;
}
.button-secondary {
    border: 1px solid #FFB201;
    color: #fff;
}
a {
    text-decoration: none;
    color: inherit;
}
p:only-child {
    margin: 0;
}
.header-wrapper {
    padding: 15px 0;
}
.header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
/* Hero section */
.hero-content--wrapper {
    padding: 100px 0;
}
.hero-title {
    font-family: "Kode Mono", serif;
    font-size: 50px;
    font-weight: 400;
    max-width: 975px;
    letter-spacing: 2.50px;
    margin: 0 0 30px;
}
.hero-title span {
    color: #FFB201;
}
.hero-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 44px;
}
.hero-links .button {
    font-family: "Inter", serif;
    font-size: 18px;
    line-height: 2;
}
.hero-info {
    color: #E3E6FF;
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    max-width: 514px;
}

@media screen and (min-width: 750px) {
    .header-wrapper {
        padding: 25px 0;
    }
    .hero-title {
        font-size: 70px;
        letter-spacing: 3.50px;
    }
    .hero-links {
        justify-content: start;
    }
    .hero-info {
        font-size: 24px;
    }
    
}
@media screen and (max-width: 749px) {
    body{
        background-image: url('../image/blueprint-board-green2.png');
        background-position: bottom;
        background-size: 100%;
    }
    .site-logo img {
        width: 67px;
    }
    .hero-content--wrapper {
        text-align: center;
    }
}