body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('https://miro.medium.com/v2/resize:fit:828/format:webp/1*NgO7JWVb6idIQckl1Fn4Ng.jpeg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #333;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.container {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 2rem;
    color: #333;
}

p {
    font-size: 1.2rem;
    color: #555;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.morse {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: #999;
    margin-top: 1rem;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.morse td {
    padding: 0.5rem;
    border: 2px solid #555;
    background-color: #fff;
}

.dot {
    color: #8e44ad;
}

.dash {
    color: #1abc9c;
}

.timer {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(45deg, #1abc9c, #3498db);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(26, 188, 156, 0.5), 0 0 20px rgba(52, 152, 219, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(26, 188, 156, 0.8), 0 0 30px rgba(52, 152, 219, 0.8);
    }
}

.creator {
    margin-top: 2rem;
    font-size: 0.6rem;
    color: #555;
}

.creator a {
    color: #3498db;
    text-decoration: none;
}

.creator a:hover {
    text-decoration: underline;
}
