@charset "UTF-8";

@font-face{
    font-family: "Minecraft";
    src: url("../fonts/MinecraftTen.ttf");
}

.profile-area{
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

body{
    font-family: "Yu Gothic", sans-serif;
    background-image: url("../images/background3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

.icon{
    width: 256px;
    height: 400px;

    filter:
        drop-shadow(2px 0 0 white)
        drop-shadow(-2px 0 0 white)
        drop-shadow(0 2px 0 white)
        drop-shadow(0 -2px 0 white);
}

.mini-icon{
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
    vertical-align: middle;
    margin-left: 8px;
}

h1{
    font-family: "Minecraft", sans-serif;
    color: #000000;
    text-shadow:
        -2px -2px 0 white,
         2px -2px 0 white,
        -2px  2px 0 white,
         2px  2px 0 white,
         6px  6px 0 rgba(0,0,0,0.3);
}

table{
    background: rgba(198,173,112,0.95);
    border: 4px solid #3b2f2f;
    border-collapse: collapse;
    width: 550px;
    box-shadow: 8px 8px 0 #2c2c2c;
}

th{
    background: #4c8c2b;
    color: white;
    border: 2px solid #3b2f2f;
    padding: 15px;
}

td{
    background: #d9c28f;
    border: 2px solid #3b2f2f;
    padding: 15px;
}

tr:nth-child(even) td{
    background: #eef3ff;
}

tr:hover td{
    background: #dce8ff;
    transition: 0.3s;
}