@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/Comfortaa-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/Comfortaa-Medium.ttf') format('truetype');
    font-weight: 500;
}

.scroll_target {
    scroll-margin-top: 120px;
}

html {
    scroll-behavior: smooth;
    background: #50A39A;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    margin: 0;
    color: #000000;
    font-family: 'Comfortaa', sans-serif;
    font-style: bold;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
}

.empty_block {
    box-sizing: border-box;
    display: flex;
    align-self: stretch;
    height: 72px;
    background: #91E27B;
}

h1 {
    scroll-margin-top: 120px;
    margin-bottom: 0px;
    font-size: 36px;
    line-height: normal;
    white-space: nowrap;
    color: #5DA356;
}

h2 {
    font-size: 28px;
    line-height: normal;
    white-space: nowrap;
    color: #5DA356;
}

h3 {
    font-size: 22px;
    line-height: normal;
    color: #5DA356;
}

.content {
    display: flex;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    background: #FFFFFF;
}

.content a {
    color: #5DA356;
}
@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    body {
        font-size: 16px;
    }
        
    .content {
        padding: 20px;
        gap: 20px;
    }
}