/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clear {
	clear: both;
}

html {
    font-family: 'Questrial', sans-serif;
}

:root {
    --bg: rgba(244, 239, 252, 1);
    --bg-accent: rgba(251, 221, 116, 1);
    --font-dark-main: rgba(31, 17, 53, 1);
    --font-dark-sub: rgba(27, 19, 37, 1);
    --button-main: rgba(255, 110, 108, 1);
}

#f4effc

a {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

/******************************************
/* BASE STYLES
/*******************************************/

body {
    width: 100%;
    max-width: 90rem;
    background-color: var(--bg);
    margin: 0 auto;
}

body::before {
    content: "";
    background-image: url("../img/paw-print-bg.png");
    background-repeat: repeat;
    background-size: contain;
    opacity: 35%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.container {
    padding: 2rem 1rem;
    background-color: var(--bg);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.description {
    margin-top: 1rem;
    line-height: 1.15;
    color: var(--font-dark-sub);
}

.options {
    margin: 1rem auto 0;
}

footer {
    margin: 1rem auto 0;
    text-align: center;
}

/******************************************
/* LAYOUT
/*******************************************/

h1 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--font-dark-main);
    font-size: 4.8rem;
    text-align: center;
}

.description h2 {
    text-align: center;
    font-size: 1.8rem;
}

.description p {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.description p + p {
    font-style: italic;
}

.options * {
    display: block;
    margin: 0 auto;
}

.options select::-webkit-scrollbar {
    width: 0.75rem;
}

.options select {
    font-family: 'Questrial', sans-serif;
    background-color: var(--button-main);
    color: var(--font-dark-sub);
    font-size: 1.6rem;
    text-align: center;
    text-transform: capitalize;
    font-weight: bold;
    border: 0;
    border-radius: 10rem;
    margin-top: 1rem;
    box-shadow: rgba(255, 110, 108, .2) 0 -25px 18px -14px inset,
                rgba(255, 110, 108, .15) 0 1px 2px,
                rgba(255, 110, 108, .15) 0 2px 4px,
                rgba(255, 110, 108, .15) 0 4px 8px,
                rgba(255, 110, 108, .15) 0 8px 16px,
                rgba(255, 110, 108, .15) 0 16px 32px;
    cursor: pointer;
    overflow: scroll;
    padding: 0.7rem 2rem;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-accent) var(--button-main);
}

.options select::-webkit-scrollbar-track {
    background: var(--button-main);
}

.options select::-webkit-scrollbar-thumb {
    background-color: var(--bg-accent);
    border-radius: 0.6rem;
    border: 0.1rem solid var(--button-main);
}

.options select:hover {
    box-shadow: rgba(255, 110, 108,.35) 0 -25px 18px -14px inset,
                rgba(255, 110, 108,.25) 0 1px 2px,
                rgba(255, 110, 108,.25) 0 2px 4px,
                rgba(255, 110, 108,.25) 0 4px 8px,
                rgba(255, 110, 108,.25) 0 8px 16px,
                rgba(255, 110, 108,.25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);
}

.image {
    max-width: 100%;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image img {
    max-width: 100%;
}

footer a {
    cursor: pointer;
    text-decoration: none;
    color: var(--font-dark-main);
}

footer a:visited {
    text-decoration: none;
    color: var(--font-dark-main);
}

footer a:hover {
    color: var(--button-main);
}

footer p,
footer a {
    font-size: 1.2rem;
    color: var(--font-dark-main);
}

footer p + p {
    margin-top: 0.5rem;
}

/******************************************
/* MEDIA QUERIES
/*******************************************/

@media (min-width: 768px) {
    .container {
        padding: 4rem 2rem;
    }

    h1 {
        font-size: 7.5rem;
    }

    .description h2 {
        font-size: 2.4rem;
    }
    
    .description p {
        font-size: 2rem;
    }
    
    .options select {
        font-size: 2.4rem;
        padding: 0.7rem 2rem;
    }

    footer p,
    footer a {
        font-size: 1.8rem;
    }
}


