@font-face {
    font-family: typewriter;
    src: url(../img/OldNewspaperTypes.ttf);
}

body {
  background-image: url("../img/background2k.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;      /* ← important */
  background-position: center;
  background-color: black;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: clamp(180px, 40vw, 600px);
}

.menu {
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(15px);
    font-family: typewriter;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.box-full-width {
    padding: 15px;
    text-align: center;
    color: white;
}

.box-full-width form {
    margin-bottom: 20px;
}

input {
    border: none;
    border-radius: 10px;
    padding: 10px;
    vertical-align: top;
}

label {
    font-size: 24px;
}

button {
    font-size: 24px;
    vertical-align: top;
    border-radius: 10px;
}

@media (max-height: 450px) {
    .logo {
        margin-top: 10px;
        width: clamp(180px, 30vw, 600px) !important;
    }
}

@media (max-width: 768px) {
    .logo {
        margin-top: 20px;
        width: clamp(180px, 60vw, 600px);
    }

    .box-full-width {
        padding: 10px;
    }

    .box-full-width form {
        margin-bottom: 15px;
    }

    .box-full-width form button {
        margin-top: 20px;
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .logo {
        margin-top: 20px;
        width: clamp(180px, 80vw, 600px);
    }
}

