/* Reset default styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove list styles */
ul,
ol {
    list-style: none;
}

/* Remove default text decoration */
a {
    text-decoration: none;
    color: inherit;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Form elements reset */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
}

button {
    background: none;
    cursor: pointer;
}

/* Set base font */
html {
    font-size: 62.5%; /* For easier rem calculations - 1rem = 10px */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    font-size: 1.6rem;
} 