* {
    margin: 0;
    padding: 0;

    font-family: "DM Sans", sans-serif;

    text-decoration: none;
    
    box-sizing: border-box;
}

html {
    font-size: 18px;
}

body {
    background: var(--mcolor5);
}

h1, h2 {
    text-align: left;
}

p {
    line-height: 1.5rem;
    text-align: justify;
}

label {
    font-size: 0.8rem;
}

input, textarea, button {
    padding: 15px;

    border: 1px solid black;
    border-radius: 10px;

    resize: none;
}

button {
    border: none;

    background-color: gray;

    font-size: 0.8rem;
    font-weight: 600;

    cursor: pointer;
}

button, a {
    text-align: center;
}

.horizontal-scroll {
    padding-bottom: 5px;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 5px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: lightgray;
    border-radius: 10px;
}

@media (max-width: 640px) {
    html {
        font-size: 12px;
    }
}