@font-face {
  font-family: "minecraft";
  src: url(/src/minecrafter.ttf);
}
@font-face {
  font-family: "minecraftmin";
  src: url(/src/Minecraftia-Regular.ttf);
}
body, html { margin: 0; padding: 0; height: 100%; overflow: hidden; }

h1, a {
    font-family: 'minecraft';
}

p {
    font-family: 'minecraftmin';
}
        
.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: black;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: teleportIn 1.2s ease-out forwards;
}

@keyframes teleportIn {
    0% { transform: scale(1.2); filter: blur(15px) brightness(2); opacity: 0; }
    100% { transform: scale(1); filter: blur(0) brightness(1); opacity: 1; }
}
.container a {
    top: 30px;
    left: 30px;
    position: absolute;
    background: rgba(0, 0, 0, 0.75); 
    color: #fff;  
    text-decoration: none;
    border: 4px solid #373737;      
    border-right-color: #1e1e1e;    
    border-bottom-color: #1e1e1e;
    border-radius: 20px;
    padding: 10px;
    transition: all 0.3s ease;      
    cursor: pointer;
    }

.container a:hover {
transform: scale(1.02);        
border-color: green;         
background: rgba(0, 0, 0, 0.85);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.zone-title {
    position: absolute;
    bottom: 50px;
    right: 50px;
    color: white;
    text-align: right;
    text-shadow: 0 0 20px rgba(0,0,0,1);
}