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

body,
html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', serif;
    font-size: 18px;
    color: #412D6F;
    background-color: #fff;
    font-weight: 400;
}

img {
    height: auto;
    max-width: 100%;
    border: none;
    vertical-align: middle;
}

a,
a:hover {
    text-decoration: none;
}

button.focus,
button:focus,
input:focus,
textarea:focus,
a:focus {
    text-decoration: none;
    outline: none;
    border: none;
    box-shadow: none;
    outline: unset;
}

button:hover {
    opacity: .6;
}

button:focus {
    opacity: .6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p + p {
    margin-top: 20px;
    margin-bottom: 0;
}

nav ul, 
nav li, 
nav a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
}

ul, 
ol {
    list-style-position: inside;
}