@font-face {
  font-family: 'Digital-7';
  src: url('https://escape.joenblan.host/digital-7.ttf') format('truetype');
  font-weight: normal;
}

body {
    font-family: 'Lobster', cursive;
    text-align: center;
    margin: 20px;
    background-color: #1a1a1a;
    color: #fff;
}

button {
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

input {
    padding: 8px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.hidden {
    display: none;
}

#startPage {
    padding: 20px;
}

#letterPage, #countdownPage {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

#letterContent {
    font-size: 14px;
}

#countdown {
    font-size: 30px;
    color: red;
    font-family: 'Digital-7', sans-serif;
}

#countdownPage button {
    margin-top: 10px;
}

