.jost-bold {
    font-family: 'Jost', Arial, sans-serif;
    font-weight: 700;
}
.jost-medium {
    font-family: 'Jost', Arial, sans-serif;
    font-weight: 450;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Jost', Arial, sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 28px;
}
header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Jost', Arial, sans-serif;
    font-weight: 700;
    text-align: center;
    min-height: 100vh;
}
.center-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
img {
    height: auto;
    display: block;
}
.burger-img {
    width: 150px;
}
.rounded-border {
    border: 4px solid #60A512;
    border-radius: 12px;
    padding: 8px;
    display: inline-block;
    width: fit-content;
    height: fit-content;
    box-sizing: border-box;
}
.responsive-img {
    width: 60vw;
    max-width: 900px;
    min-width: 150px;
}
.button-link button {
    display: inline-block;
    background-color: #60A512;
    color: #fff;
    border: 2px solid #60A512;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.button-link button:hover {
    background-color: #ffffff;
    color: #60A512;
    border: 2px solid #60A512;
}
a {
    text-decoration: none;
    color: #60A512;
}
.pt {
    padding-top: 12px;
}
.pb {
    padding-bottom: 12px;
}
.mt {
    margin-top: 12px;
}
.ml {
    margin-left: 12px;
}
.mr {
    margin-right: 12px;
}
.mb {
    margin-bottom: 12px;
}
.mt-2 {
    margin-top: 24px;
}
.mt-3 {
    margin-top: 72px;
}
.mb-2 {
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .center-container {
        justify-content: flex-start;
        padding-top: 24px;
    }
    .burger-img {
        width: 100px;
    }
    .mt-3 {
        margin-top: 36px;
    }
}