
body {
    background: linear-gradient(to right, #ece9e6, #ffffff);
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}


.container {
    text-align: center;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 20px;
}

.input-group {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

input[type="text"] {
    width: 300px;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    margin-right: 10px;
    font-size: 1em;
    transition: border-color 0.3s ease-in-out;
}

input[type="text"]:focus {
    border-color: #4A90E2;
    outline: none;
}

button {
    padding: 12px 20px;
    border: none;
    background: #4A90E2;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    margin-top: 10px;
}

button:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}


#video-container {
    margin-top: 30px;
}

iframe {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.footer-text {
    margin-right: 10px;
    font-weight: bold;
}

.footer-heart {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
