* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #290065;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #360080;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.text {
    flex: 1 1 400px;
    padding: 20px;
}

.text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.text a {
    color: #ff00ff;
    text-decoration: underline;
}

.notify-button {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 1rem;
}

.notify-button:hover {
    background-color: #ffffff;
    color: #360080;
}

.social {
    margin-top: 30px;
}

.social a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}

.social img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.image {
    flex: 1 1 400px;
    text-align: center;
}

.image img {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 800px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .text,
    .image {
        flex: 1 1 100%;
    }
}
