/* color palette */
/* CSS HEX */
:root {
    --rich-black-fogra-39: #0b0a07ff;
    --beige: #ebebd3ff;
    --old-lavender: #776871ff;
    --teal: #107e7dff;
    --chocolate-web: #da7422ff;
}

/* Base stylings */
html 
{
    font-size: 16px;
    color: var(--rich-black-fogra-39);
    background-color: var(--beige);
}

body 
{
    color: var(--rich-black-fogra-39);
}

a
{
    text-decoration: none;
    color: var(--old-lavender);
}

a:hover {
    color: var(--chocolate-web);
    animation: changeColor 2s ease-in-out infinite;
}

@keyframes changeColor {
    0% {
      color: var(--chocolate-web);
    }
  
    25% {
      color: var(--teal);
    }

    50% {
        color: var(--old-lavender);
    }
  
    75% {
      color: var(--rich-black-fogra-39);
    }
}

h1 {
    color: var(--chocolate-web);
}

/* skeleton overrides */

@media (min-width: 400px) {
    .container {
        margin-left: 2rem;
    }
}

ul {
    list-style-type: square;
}

/* Utilities */
.center-block
{
    display: block;
    margin: 0 auto;
}

.center-text
{
    text-align: center;
}

.full-height {
    height: 100%;
}

.relative {
    position: relative;
}

.flex 
{
    display: flex;
}

.flex-inline
{
    display: inline-flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 
{
    flex: 1 0 0;
}

.m-0 {
    margin: 0;
}

.ml-sm {
    margin-left: 1rem;
}

.ml-l {
    margin-left: 3rem;
}

.mt-sm {
    margin-top: 1rem;
}

.text-m {
    font-size: 1.6rem;
}

.text-l {
    font-size: 6rem;
}

.blink {
    animation: blinker 1s step-start infinite;
}

.accent {
    color: var(--teal);
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Larger than mobile */
@media (min-width: 400px) {
    .text-m {
        font-size: 1.8rem;
    }
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
    .text-m {
        font-size: 2.3rem;
    }
}

/* Larger than tablet */
@media (min-width: 750px) {
    .text-m {
        font-size: 3rem;
    }

    .text-l {
        font-size: 10rem;
    }
}


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}