body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffe6e6;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
}

.container {
    text-align: center;
    flex: 1;
    position: relative;
}

footer {
    text-align: center;
    margin-top: auto;
    padding: 10px 0;
    background-color: #ffe6e6;
    width: 100%;
}

form {
    margin-bottom: 20px;
}

label {
    font-size: 18px;
    margin-right: 10px;
}

input[type="text"] {
    padding: 10px; 
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

button:hover {
    background-color: #ff3333;
}

button:active {
    transform: scale(1.1);
}

button.yes {
    background-color: #ff6f61;
    color: white;
}

button.no {
    background-color: #61b3ff;
    color: white;
}

button.no:hover {
    background-color: #4a9edb;
}

button.yes:active {
    transform: scale(1.2);
}

button.copy-link {
    background-color: #4CAF50;
    color: white;
    margin-top: 20px;
}

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

.popup {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 10px;
    position: fixed;
    z-index: 1;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.popup.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

h1 {
    color: #ff4d4d;
    font-size: 2.5em;
}