body {
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #ffffff;
    background-image: url(data:image/png;base64,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);
    background-color:#0c303f;
    height: 100%; 
    overflow: hidden;
    animation-name: fade_in;
    animation-duration: 1s;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-timing-function: ease;
}

@keyframes fade_in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

button {
    box-shadow: 10px 10px #0000008a;
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    width: 150px;
    transition: background-color 0.5s;
    position: relative;
    right: 50%;
    z-index: 2;
}
button:hover {
    background-color: #2980b9;
}

.Main_Block {
    position: absolute;
    top: 40vh;
    left: 50%;
}
.Title {
    color: #43a2e2;
    text-align: center;
    margin-top: 10vh;
    transition: transform 1s, color 1s;
    font-size: xx-large;
    font-size-adjust: 1.3;
    text-shadow: 10px 10px #0000008a;
    z-index: 2;
}
.Title:hover {
    transform: scale(1.05);
    color:#ffffff;
}

#HonorBorn_Redirection_Button:hover {
    background-color: #b1d911;
}

#RandomBulletsInShape_Redirection_Button:hover {
    background-color: red;
}

#Daggerfall_Redirection_Button:hover {
    background-color: #840c0c;
}

#Social_Redirection_Button:hover {
    background-color: #aec8f2;
}

#Git_Redirection_Button:hover {
    background-color: #2b3137;
}


.Redirection_Button:focus ~ figure {
    background-color: #0c303f;
    animation-name: fade_in;
    animation-duration: 0.5s;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    z-index: 10;
}

#credits {
    color:rgb(255, 255, 255);
    
    position: fixed;
    bottom:10px;
    left:10px;
    text-shadow: 2px 2px #0000002a;
}
#White_Rectangle {
    pointer-events: none;
    opacity: 0;
    position: fixed;
    top: -20px;
    left: -50px;
    background-color: #0c303f;
    height: 110vh;
    width: 110vw;
    z-index: 10;
}
#d20_1 {
    filter: sepia(18%) saturate(1697%) hue-rotate(0deg) brightness(98%) contrast(104%);
    animation-delay: 0s;
}
#d20_2 {
    filter: sepia(18%) saturate(1697%) hue-rotate(18deg) brightness(98%) contrast(104%);
    animation-delay: -2s;
}
#d20_3 {
    filter: sepia(18%) saturate(1697%) hue-rotate(36deg) brightness(98%) contrast(104%);
    animation-delay: -4s;
}
#d20_4 {
    filter: sepia(18%) saturate(1697%) hue-rotate(54deg) brightness(98%) contrast(104%);
    animation-delay: -6s;
}
#d20_5 {
    filter: sepia(18%) saturate(1697%) hue-rotate(72deg) brightness(98%) contrast(104%);
    animation-delay: -8s;
}
#d20_6 {
    filter: sepia(18%) saturate(1697%) hue-rotate(90deg) brightness(98%) contrast(104%);
    animation-delay: -10s;
}
#d20_7 {
    filter: sepia(18%) saturate(1697%) hue-rotate(108deg) brightness(98%) contrast(104%);
    animation-delay: -12s;
}
#d20_8 {
    filter: sepia(18%) saturate(1697%) hue-rotate(126deg) brightness(98%) contrast(104%);
    animation-delay: -14s;
}
#d20_9 {
    filter: sepia(18%) saturate(1697%) hue-rotate(144deg) brightness(98%) contrast(104%);
    animation-delay: -16s;
}
#d20_10 {
    filter: sepia(18%) saturate(1697%) hue-rotate(162deg) brightness(98%) contrast(104%);
    animation-delay: -18s;
}
#d20_11 {
    filter: sepia(18%) saturate(1697%) hue-rotate(180deg) brightness(98%) contrast(104%);
    animation-delay: -20s;
}
#d20_12 {
    filter: sepia(18%) saturate(1697%) hue-rotate(198deg) brightness(98%) contrast(104%);
    animation-delay: -22s;
}
#d20_13 {
    filter: sepia(18%) saturate(1697%) hue-rotate(216deg) brightness(98%) contrast(104%);
    animation-delay: -24s;
}
#d20_14 {
    filter: sepia(18%) saturate(1697%) hue-rotate(234deg) brightness(98%) contrast(104%);
    animation-delay: -26s;
}
#d20_15 {
    filter: sepia(18%) saturate(1697%) hue-rotate(252deg) brightness(98%) contrast(104%);
    animation-delay: -28s;
}
#d20_16 {
    filter: sepia(18%) saturate(1697%) hue-rotate(270deg) brightness(98%) contrast(104%);
    animation-delay: -30s;
}
#d20_17 {
    filter: sepia(18%) saturate(1697%) hue-rotate(288deg) brightness(98%) contrast(104%);
    animation-delay: -32s;
}
#d20_18 {
    filter: sepia(18%) saturate(1697%) hue-rotate(306deg) brightness(98%) contrast(104%);
    animation-delay: -34s;
}
#d20_19 {
    filter: sepia(18%) saturate(1697%) hue-rotate(324deg) brightness(98%) contrast(104%);
    animation-delay: -36s;
}
#d20_20 {
    filter: sepia(18%) saturate(1697%) hue-rotate(342deg) brightness(98%) contrast(104%);
    animation-delay: -38s;
}
#d20_21 {
    filter: sepia(18%) saturate(1697%) hue-rotate(0deg) brightness(98%) contrast(104%);
    animation-delay: -40s;
}
#d20_22 {
    filter: sepia(18%) saturate(1697%) hue-rotate(18deg) brightness(98%) contrast(104%);
    animation-delay: -42s;
}
#d20_23 {
    filter: sepia(18%) saturate(1697%) hue-rotate(36deg) brightness(98%) contrast(104%);
    animation-delay: -44s;
}
#d20_24 {
    filter: sepia(18%) saturate(1697%) hue-rotate(54deg) brightness(98%) contrast(104%);
    animation-delay: -46s;
}
#d20_25 {
    filter: sepia(18%) saturate(1697%) hue-rotate(72deg) brightness(98%) contrast(104%);
    animation-delay: -48s;
}
#d20_26 {
    filter: sepia(18%) saturate(1697%) hue-rotate(90deg) brightness(98%) contrast(104%);
    animation-delay: -50s;
}
#d20_27 {
    filter: sepia(18%) saturate(1697%) hue-rotate(108deg) brightness(98%) contrast(104%);
    animation-delay: -52s;
}
#d20_28 {
    filter: sepia(18%) saturate(1697%) hue-rotate(126deg) brightness(98%) contrast(104%);
    animation-delay: -54s;
}
#d20_29 {
    filter: sepia(18%) saturate(1697%) hue-rotate(144deg) brightness(98%) contrast(104%);
    animation-delay: -56s;
}
#d20_30 {
    filter: sepia(18%) saturate(1697%) hue-rotate(162deg) brightness(98%) contrast(104%);
    animation-delay: -58s;
}
#d20_31 {
    filter: sepia(18%) saturate(1697%) hue-rotate(180deg) brightness(98%) contrast(104%);
    animation-delay: -60s;
}
#d20_32 {
    filter: sepia(18%) saturate(1697%) hue-rotate(198deg) brightness(98%) contrast(104%);
    animation-delay: -62s;
}
#d20_33 {
    filter: sepia(18%) saturate(1697%) hue-rotate(216deg) brightness(98%) contrast(104%);
    animation-delay: -64s;
}
#d20_34 {
    filter: sepia(18%) saturate(1697%) hue-rotate(234deg) brightness(98%) contrast(104%);
    animation-delay: -66s;
}
#d20_35 {
    filter: sepia(18%) saturate(1697%) hue-rotate(252deg) brightness(98%) contrast(104%);
    animation-delay: -68s;
}
#d20_36 {
    filter: sepia(18%) saturate(1697%) hue-rotate(270deg) brightness(98%) contrast(104%);
    animation-delay: -70s;
}
#d20_37 {
    filter: sepia(18%) saturate(1697%) hue-rotate(288deg) brightness(98%) contrast(104%);
    animation-delay: -72s;
}
#d20_38 {
    filter: sepia(18%) saturate(1697%) hue-rotate(306deg) brightness(98%) contrast(104%);
    animation-delay: -74s;
}
#d20_39 {
    filter: sepia(18%) saturate(1697%) hue-rotate(324deg) brightness(98%) contrast(104%);
    animation-delay: -76s;
}
#d20_40 {
    filter: sepia(18%) saturate(1697%) hue-rotate(342deg) brightness(98%) contrast(104%);
    animation-delay: -78s;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.d20_img {
    position: absolute;
    top: 23%;
    left: 50%;
    height: 11rem;
    width: 11rem;
    user-select: none;
    pointer-events: none;
    animation-name: rotate;
    animation-duration: 80s;
    animation-direction: normal;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: -10% 600%;
    z-index: -1;
    text-align: center;
}
#number {
    transform: translate(0%, -355%);
}