* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #0069a7;
}

a:hover {
    color: #00aaff;
    text-decoration: underline;
    transition: color 0.2s;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #252525;
    color: #fff;
    overflow: hidden;
}

.hud-main {
    display: block;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100dvh;
    background-image: url("assets/background.png");
}

.hud-information {
    display: block;
    position: absolute;
    padding: 20px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 350px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 4%;
}

.game-icon-visual {
    display: block;
    width: 96px;
    height: 96px;
    background-image: url("assets/game-icon.png");
    background-size: cover;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.tree-visual {
    display: block;
    position:absolute;
    background-image: url("assets/tree.png");
    width: 196px;
    height: 196px;
}

.stone-visual {
    display: block;
    position:absolute;
    background-image: url("assets/stone.png");
    width: 144px;
    height: 144px;
}