html, body {
    /*background-color: #fffaf0;*/
    background-image: url("https://d1qcrhxl8rhcto.cloudfront.net/images/hp_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #636b6f;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    height: 100vh;
    margin: 0;
}
.full-height {
    height: 100vh;
}
.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}
.position-ref {
    position: relative;
}
.top-right {
    position: absolute;
    right: 10px;
    top: 18px;
}
.content {
    text-align: center;
}
.title {
    font-size: 90px;
    position: relative;
}
.title-multi-color {
    font: 700 110px "Comic Sans MS";
    color: #ffffff;
    text-shadow: 0 0 15px #fdaaf9,
    15px -15px 10px #8678fe,
    15px -15px 25px #ffeb78,
    -15px -20px 30px #5495dd,
    30px -25px 30px #86ec58;
}
.menu-multi-color {
    font: 400 10px "Comic Sans MS";
    color: white;
    text-shadow: 0 0 15px #ffffff,
    5px -10px 10px #fef0c5;
}
.links > a {
    color: #ffffff;
    padding: 7px 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01rem;
    text-decoration: none;
    text-transform: uppercase;
}
.links > a:hover {
    background-color: #fedf78;
    border-radius: 5px;
    color: #ff0314;
    text-shadow: 0 0 15px #fff,
    5px -8px 10px #ffffff;
}
.m-b-md {
    margin-bottom: 30px;
}
.cm-logo {
    width: 50px;
    position: absolute;
    top: 20%;
    left: 10%;
    cursor: pointer;
}
.font-color {
    color: #dd4b39;
}
.icon {
    width: 50%;
    text-align: center;
    margin: 50px auto;
}
.icon img {
    display: inline-block;
    animation: myfirst 1.7s infinite;
    border-radius: 50%;
}
@keyframes myfirst {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(0px, -10px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
