body {
    background: #050524 !important;
    height: 100vh;
    width: 100vw;
}

a {
    text-decoration: none !important;
}

.yuleContent {
    display: flex;
    flex-direction: column;
}

.yuleLogo {
    margin-top: 30px;
    margin-bottom: 20px;
    width: 250px;
}

.yuleRuneImage {
    margin-bottom: 40px;
}

.yuleRune {
    max-width: 412px;
    width: 83%;
    opacity: .1;
}

.yuleButton {
    background: #FBC83D;
    max-width: 150px;
    height: 45px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: none;
    margin-bottom: 115px;
}

.yuleButtonContent {
    font-family: "Montserrat";
    color: #050524;
    letter-spacing: 2px;
    font-weight: 700;
}



.yuleRuneWrapper {
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    display: flex;
}


.yuleImageBG {
    position: absolute;
    height: 35%;
    width: 35%;
    max-width: 250px;
    max-height: 250px;
    border-radius: 15px;
    background:rgba(221, 0, 255, 0.15);
    filter: blur(50px);
    /* in order: x offset, y offset, blur size, spread size, color */
    /* blur size and spread size are optional (they default to 0) */
}

.yuleImage {
    position: absolute;
    width: 45%;
    max-width: 250px;
    max-height: 250px;
    border-radius: 15px;
    -webkit-animation: rotateY 6s infinite linear;
    animation: rotateY 6s infinite linear;
}
@-webkit-keyframes rotateY {
    to { -webkit-transform: rotateY(360deg); }
}

@keyframes rotateY {
    to { transform: rotateY(360deg); }
}

.yuleRune {
    position: relative;
}


.yuleImageTitle {
    text-align: center;
    font-size: 25px;
    font-family: "Montserrat";
    text-transform: uppercase;
    color: #FBC83D;
    font-weight: 300;
}

.yuleImageDescription {
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.yuleDividerLeft {
    width: 10%;
}

.yuleImageDescriptionNumber {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 25px;
    font-family: "Montserrat";
    letter-spacing: 5px;
    font-weight: 300;
    margin-top: auto;
    margin-bottom: auto;
    color: #ffffff;
}

.yuleDividerRight {
    width: 10%;
    transform: rotateY(180deg);
}


@media (min-width: 480px) {
    .yuleRuneWrapper {
        margin-top: 20px;
    }
}