* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    width: 100%;
    background-color: #9f804624;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

strong {
    font-weight: 600;
}

.container {
    background-color: #fff;
    margin-top: 100px;
    padding: 12px;
}

h1,
h2 {
    color: #ce9a59;
    ;
    text-transform: uppercase;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 20px;
    font-weight: 700;
}

h2 {
    font-weight: 500;
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

p,
ul,
li {
    font-weight: 300;
    margin: 10px 0;
    font-size: 1rem;
}

ul {
    padding-left: 20px;
    list-style-type: disc;
}

a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
}

a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin: 100px auto;
        padding: 2rem;
        border-radius: 12px;
    }
}