@font-face {
  font-family: 'Minecraft Regular';
  src: url('/static/MinecraftRegular.otf') format('opentype');
}

body {
    background-image: url("dirt.png");
    background-repeat: repeat;
    background-size: 64px 64px;
    image-rendering: pixelated;
    font-family: "Minecraft Regular","Arial", sans-serif;
    color: white;
    }

.raft {
    width: 50%;
    height: 80%;
    padding: 20px;
    background-image: url("stone.png");
    background-repeat: repeat;
    background-size: 64px 64px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    }
button {
    background-image: url("stone.png");
    background-repeat: repeat;
    background-size: 8px 8px;
    font-family: "Minecraft Regular","Arial", sans-serif;
    color: white;
}
input {
    background-repeat: repeat;
    background-size: 8px 8px;
    background-image: url("stone.png");
    background-color: transparent;
    font-family: "Minecraft Regular","Arial", sans-serif;
    color: white;
}
input::placeholder {
    color: white;
}