*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html{
    /* 1rem = 10px */
    font-size: 62.5%;
}

h1{
    font-size: 3.8rem;
}
h2{
    font-size: 3.4rem;
}
h3{
    font-size: 3rem;
}
h4{
    font-size: 2.6rem;
}
h5{
    font-size: 2.2rem;
}
h6{
    font-size: 1.8rem;
}

a{
    display: block;
    text-decoration: none;
    width: fit-content;
    font-size: 1.6rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

p, q, b, strong, span, input, label, textarea, li{
    font-size: 1.6rem;
    font-family: "Open Sans";
}

ul, ol{
    list-style: none;
}