body {
    background-color: #1a1a2e;
    color: #e94560;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    border: 2px solid #e94560;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba (233, 69, 96, 0.3);
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: white;
    border: 1px solid #e94560;
    text-decoration: none;
    transition: 0.3;
}

.btn:hover {
    background: #e94560;
    box-shadow: 0 0 15px #e94560;
}

.blink {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0;}
}