@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    box-sizing: border-box;
}


.login-btn {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 200px;
    height: 80px;
    gap: 20px;
    background-image: url('Resources/login-button.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;

    image-rendering: pixelated;
    image-rendering: crisp-edges;
    border: none;
    cursor: pointer;
}

.play-btn {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 200px;
    height: 80px;
    gap: 20px;
    background-image: url('Resources/play-button.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;

    image-rendering: pixelated;
    image-rendering: crisp-edges;
    border: none;
    cursor: pointer;
}

.acc-btn {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 200px;
    height: 80px;
    gap: 20px;
    background-image: url('Resources/acc-btn.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;

    image-rendering: pixelated;
    image-rendering: crisp-edges;
    border: none;
    cursor: pointer;
}

.leaderboard-btn {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 200px;
    height: 130px;
    gap: 20px;
    background-image: url('Resources/leader-btn.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;

    image-rendering: pixelated;
    image-rendering: crisp-edges;
    border: none;
    cursor: pointer;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #000;
    color: #fff;
    font-family: "Press Start 2P", monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    overflow: hidden;
}

hr {
    color: red;
}

h1 {
    font-size: 40px;
    margin-bottom: 30px;
    text-shadow: 4px 4px #555;
}