@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    background-repeat: no-repeat center;
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    background-image: url(https://images.unsplash.com/photo-1505753255122-ecb7f694d6c4?q=80&w=2073&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);

    width: 100%;
    height: 100%;
    font-family: 'Kanit', sans-serif;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.header-items {
    margin-top: 8rem;
    margin-bottom: 3rem;
}

.header-items h2 {
    color: #fc141c;
    text-shadow: 1px 1px #919dab;
}

.badge {
    text-align: center;
    align-items: center;
    font-size: 1.2em;
}

@media screen and (max-width: 36rem) {
    .header-items {
        margin-top: 5rem;
        margin-bottom: 2rem;
    }

    .header-items h2 {
        font-size: 1.5em;
    }
    
    .header-items h4 {
        font-size: 1.2em;
    }

    .badge {
        font-size: 1em;
    }

    footer p {
        font-size: 0.9em;
    }
}