* {
    box-sizing: border-box;
    margin: 0;
    font-family: "Nunito", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #5b5b5b;
    font-size: 16px;
    font-optical-sizing: auto;
    font-weight: normal;
    color: white;
}

h1 {
    font-size: 32px;
    margin: 0;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
    font-weight: 400;
}

h4 {
    font-size: 16px;
    font-weight: 500;
}

a {
    text-decoration: none;
}

header {
    background: #5b5b5b;
    display: flex;
    align-items: flex-end;
}

main {
    flex: 1;
    width: min(100%, 1920px);
    margin-inline: auto;
    padding-inline: clamp(16px, 6vw, 64px);
    margin-top: 32px;
    margin-bottom: 160px;
    position: relative;
}

input:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

select:focus {
    outline: none;
}

.d__none {
    display: none !important;
}

.d__flex {
    display: flex !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

button {
    cursor: pointer;
    border: unset;
}

@media(max-width: 600px) {
    h3 {
        font-size: 18px;
    }
}

@media(max-width: 450px) {
}