@font-face {
    font-family: mcfont;
    src: url(mcfont.otf);
 }

html {
    scroll-behavior: smooth;
}

body {
    background-image: url("dirtlight.png");
    background-repeat: repeat;
    background-size: 150px;
    font-family: Arial, sans-serif;
    margin: 0;
}

h2, h3 {
    color: rgb(0, 0, 0);
}

h1 {
    background-image: url("wool.png");
    background-repeat: repeat;
    background-size: 150px;
    padding: 16px;
    font-family: mcfont !important;
}

p {
    font-size: 16px;
    color:rgb(43, 40, 40);
}

i {
    color: gray;
}

ul {
    padding-right: 5px;
}

li {
    margin-bottom: 10px;
}

a {
    color: rgb(8, 102, 224);
    text-decoration: none;
    font-family: mcfont !important;
    font-size: 20px;
}

.topbanner {
    background-color: #cecece62;
    display: flex;
    justify-content: center;
    align-items: center;
    height:300px;
    padding: 15px;
    animation-name: loadBlocks;
    animation-duration: 1.2s;
    clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 20% 100%, 20% 80%, 40% 80%, 40% 100%, 60% 100%, 60% 80%, 80% 80%, 80% 60%, 100% 60%);
}

.main {
    padding: 50px;
    animation-name: mainLoad;
    animation-duration: 2s;
}

.awards {
    max-width: 600px;
    min-width: 50px;
    animation-name: awardsLoad;
    animation-duration: 1.2s;
    transform: translateY(-20px);
}

a:hover {
    text-decoration: underline;
}

strong {
    color: rgb(6, 75, 6);
}

hr {
    border: 1px solid green;
}

.num {
    background-color: rgba(146, 146, 146, 0.329) !important;
    padding: 8px;
    font-size: 24px !important;
    font-family: mcfont !important;
}
 
.chat {
    background-color: rgba(0, 0, 0, 0.479) !important;
    padding: 2px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 24px !important;
    font-family: mcfont !important;
    vertical-align: center !important;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5) !important;
}

.c_0 { color: #000000 !important; }
.c_1 { color: #0000AA !important; }
.c_2 { color: #00AA00 !important; }
.c_3 { color: #00AAAA !important; }
.c_4 { color: #AA0000 !important; }
.c_5 { color: #AA00AA !important; }
.c_6 { color: #FFAA00 !important; }
.c_7 { color: #AAAAAA !important; }
.c_8 { color: #AAAAAA !important; }
.c_9 { color: #5555FF !important; }

.c_a { color: #55FF55 !important; }
.c_b { color: #55FFFF !important; }
.c_c { color: #FF5555 !important; }
.c_d { color: #FF55FF !important; }
.c_e { color: #FFFF55 !important; }
.c_f { color: #FFFFFF !important; }


@keyframes loadBlocks {
    0% {
        background-color: rgba(195, 230, 197, 0.705);
        clip-path: polygon(100% 0%, 0% 0%, 0% 70%, 20% 70%, 20% 70%, 40% 70%, 40% 70%, 60% 70%, 60% 70%, 80% 70%, 80% 70%, 100% 70%);
    }

    50% {
        clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 20% 100%, 20% 60%, 40% 60%, 40% 80%, 60% 80%, 60% 100%, 80% 100%, 80% 80%, 100% 80%);
    }

    100% {
        background-color: #cecece62;
        clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 20% 100%, 20% 80%, 40% 80%, 40% 100%, 60% 100%, 60% 80%, 80% 80%, 80% 60%, 100% 60%);
    }
    
}

@keyframes awardsLoad {
    from {
        opacity: 0.25;
        transform: translateY(-350px);
    }

    to {
        opacity: 1;
        transform: translateY(-20px);
    }
}

@keyframes mainLoad {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0px);
        opacity: 100;
    }
}