/*  Reset */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #F1C143;
}
ul, li{
    list-style-type: none;
}
iframe{
    border: 0;
}
input {
    border-radius: 0;
    -webkit-appearance: none;
}
:focus{
    border: 0px;
    outline: none;
}
.first-hr{
    margin-top: 0.5em;
}
.last-hr{
    margin-bottom: 0.5em;
}
hr{
    border: 3px black solid;
    margin-left: 0.5em;
    margin-right: 0.5em;
}
/*  Typography */

@font-face {
    font-family: 'Maria';
    src: url('fonts/Maria-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body, html, h1, h2, h3, h4, ::placeholder, input, button, small{
    font-family: 'Maria', Arial, Helvetica, sans-serif;
    font-size: 70px;
    line-height: 80px;
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: font-family 1s ease;
    text-transform: uppercase !important;
}

a{
	color: initial;
    text-decoration: none !important;
}
a:hover{
	color: initial;

}
p{
    padding: 0.5em;
    margin: 0;
}

/* Quotes */
.random-quotes {
  cursor: pointer;
  padding: 0.5em;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
body, html, h1, h2, h3, h4, ::placeholder, input, button, small{
    font-family: 'Maria', Arial, Helvetica, sans-serif;
    font-size: 45px;
    line-height: 55px;
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: font-family 1s ease;
    text-transform: uppercase !important;
    }
    .first-hr{
        margin-top: 0.5em;
    }
    hr{
        border: 2px black solid;
        margin-left: 0.5em;
        margin-right: 0.5em;
    }
}

@media screen and (max-width: 480px) {

body, html, h1, h2, h3, h4, ::placeholder, input, button, small{
    font-family: 'Maria', Arial, Helvetica, sans-serif;
    font-size: 27.5px;
    line-height: 35px;
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: font-family 1s ease;
    text-transform: uppercase !important;
}
.first-hr{
    margin-top: 0.5em;
}
hr{
    border: 2px black solid;
    margin-left: 0.5em;
    margin-right: 0.5em;
}
}