body {
    font-family: "Ubuntu", sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.logo-container {
    margin: 40px 0;
    text-align: center;
}

.logo {
    width: 150px;
    height: auto;
}

.content {
    min-width: 300px;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0);
    padding: 30px;
    border-radius: 13px;
    text-align: center;
    animation: shadow 25s infinite;
}

h1 {
    color: #7109c7;
    margin-bottom: 25px;
    font-weight: bolder;
}

p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.6;
    margin: 15px 0;
}

.support-email {
    color: #7109c7;
    text-decoration: none;
    font-weight: lighter;
}

@keyframes shadow {
    from {
        box-shadow: 0px 0px 100px 100px rgba(94, 29, 191, 0.3);
    }

    50% {
        box-shadow: 0px 0px 100px 90px rgba(94, 29, 191, 0.2);
    }

    to {
        box-shadow: 0px 0px 100px 100px rgba(94, 29, 191, 0.3);

    }
}