* {
    --btn-border-width: 2.2px;
}

@font-face {
  font-family: minecraft;
  src: url("src/minecraftten.ttf");
}

body{
    background-color: #171615;
}

*{
    font-family: "Poppins", sans-serif;
}

h1{
    font-family: minecraft;
    font-size: 60px;
}

.btn{
    font-family: minecraft;
    font-size: 25px;
    text-shadow: 2px 3px 0px rgba(0, 0, 0, .25);
}


.btn-mc{
    position: relative !important;
    background-color: #3C8527 ;
    padding: 10px 30px;
    color: #fff !important;
    border: 0;
    border-top: var(--btn-border-width) solid #53AF38 !important;
    border-bottom: var(--btn-border-width) solid #1B4510 !important;
    border-radius: 0;
    transition: .1s;
    padding-bottom: 15px;
}

.btn:hover{
    text-shadow: 3px 4px 0px rgba(0, 0, 0, .25);
}

.btn img{
    width: 30px;
    margin-left: 5px;
}

.btn-mc::before, .btn-mc::after{
    content: " ";
    position: absolute;
    background-color: #2D671D;
    width: var(--btn-border-width);
    height: 100%;
    left: calc(var(--btn-border-width) * -1);
    top: 0;
}

.btn-mc::after{
    left: unset;
    right: calc(var(--btn-border-width) * -1);
}

.btn-mc:hover{
    background-color: rgb(70, 145, 49);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .3);
}

footer{
    background-color: #201F1E;
}

footer a{
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    margin-left: 10px;
    opacity: .5;
    transition: .25s;
}

footer a:hover{
    opacity: .8;
}

.navbar{
    background-color: rgba(45, 45, 45, .67);
    border: 1px solid #404040;
    color: #fff !important;
}
