@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');
:root {
    --birincilArkaBoya: #c20f12;
    --ikincilArkaBoya: #8d1315;
    --akBoya: #fff;
    --ikincilAkBoya: #dadada;
    --ui-scale: 1;
}
html,
body {
    width: 100vw;
    height: 100vh;
}

html {
    user-select: none;
    -webkit-user-drag: none;
}

.body-menu {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background: radial-gradient(circle, rgba(194, 15, 18, 1) 0%, rgba(141, 19, 21, 1) 74%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.logo-game {
    max-height: 100px;
}

.body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    background: radial-gradient(circle, rgba(194, 15, 18, 1) 0%, rgba(141, 19, 21, 1) 74%);
    width: 100vw;
    height: 100vh;
    position: relative;
}

.content-wrapper-err {
    max-width: 600px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h1-err {
    color: #ffffff;
    font-weight: 900;
    font-size: 3rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.p-err {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 0 60px 0;
    line-height: 1.6;
    max-width: 90%;
    text-align: center;
}

