*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
}

html {
    font-size: 18px;
}

@font-face {
    font-family: interBold;
    src: url("../fonts/Inter-Bold.ttf");
}

@font-face {
    font-family: interLight;
    src: url("../fonts/Inter-Light.ttf");
}

body {
    font-family: interLight, sans-serif;
    letter-spacing: 2px;
    color: #fff;
}

button {
    background-color: #C04C3C;
    padding: .5rem 2rem;
    border-radius: 75px;
    font-weight: 700;
    text-transform: lowercase;
    color: #ECF3F3;
    font-size: 1rem;
    cursor: pointer;
    transition: .2s cubic-bezier(0.3, 0.6, 1, 1.5);
}

button:active, button:hover {
    transform: scale(1.1);
    transition: .2s cubic-bezier(0.3, 0.6, 1, 1.5);
}

label {
    font-size: .75rem;
    color: #fff;
}

h1, h2, h3 {
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
}

ul {
    list-style-type: none;
}

li {
    text-decoration: none;
}

#root {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: auto;
    background-image: url("../images/bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
