@import url("https://fonts.googleapis.com/css2?family=Gabarito&display=swap");
body {
    min-height: 100vh;
    background-color: #0a0a0a;
    overflow: hidden;
    position: relative;
    font-family: "Gabarito", sans-serif;
    user-select: none;
}
.glow-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.glow-2 {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.glow-bg-1,
.glow-bg-2 {
    width: 400px;
    height: 100px;
    background-color: rgb(255, 0, 179);
    opacity: 0.4;
    border-radius: 50%;
    box-shadow: 0 0 10px 5px rgb(255, 0, 0);
    filter: blur(10rem);
}
.content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: aliceblue;
    background: rgba(60, 60, 60, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.4px);
    -webkit-backdrop-filter: blur(4.4px);
    border: 1px solid rgba(60, 60, 60, 0.35);
    padding: 40px;
    width: auto;
    height: auto; 
    max-width: 500px;
    text-align: center;
}

p, span {
    background: #12c2e9;
    background: -webkit-linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
    background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
}

.content-box h2 {
    font-size: 2rem;
}
