@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
    height: 100%;
}

body {
    display: flex;
    height: 100%;
    background: linear-gradient(#11114E, #000);
    justify-content: center;
    align-items: center;
    font-family: "Open Sans", sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.02);
    box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.2);
    border-radius: 1.6rem;
    gap: 20px;
    width: 30%;
    height: 300px;
}

.container h1 {
    font-size: 3rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #11114E, #000 );
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s  infinite;
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }    
}

.container p {
    color: #dbdbed;
    font-size: 1.3rem;
    font-weight: 800;
}

.container span {
    margin-left: 1rem;
    text-decoration: underline;
}

.but {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.buttons {
    all: unset;
    font-size: 20px;
    padding: 10px 15px;
    background: #11114E;
    color: #dbdbed;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 100px;
    z-index: 10;
    transition: 0.25s ease;
}

.buttons:hover {
    background-color: #dbdbed;
    color: #11114E;
}

@media screen and (min-width: 305px)  and (max-width:500px)  {
    .container {
        width: 90%;
    }
}