img#bg {
    position: absolute;

    top: -2px;
    left: 0;

    width: 100vw;
    height: 100vh;

    object-fit: cover;

    filter: blur(5px);
}

li {
    list-style: square;
}

body {
    display: flex;
    font-family: "Jersey 15";
    font-size: 17px;

    height: 100vh;

    margin: 0;

    position: absolute;
    background: radial-gradient(circle at bottom, navy 0, black 100%);
}

.container {
    width: 100%;
    max-width: 1268px;
    margin: auto;

    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 0 calc((100vw - 700px) / 2);
    padding-bottom: 40px;

    backdrop-filter: blur(1.5px);
}

.container div {
    margin: 10px 20px;
}

.container>h1 {
    margin-top: 50px;
}

ul {
    list-style: circle;

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.warning {
    color: rgb(210, 153, 34);
    fill: rgb(210, 153, 34);

    display: flex;

    gap: 5px;

    width: 100%;
    margin: 0 !important;
    padding: 10px;
    font-weight: bold;

    background-color: rgba(210, 153, 34, 0.1);
    border: solid 1px rgba(210, 153, 34, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(10px);

    justify-content: center;
}

span {
    font-weight: bold;
    padding-bottom: 10px;
    
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.energy {
    background: -webkit-linear-gradient(45deg, #991313, #df4444);
}

.laughter {
    background: -webkit-linear-gradient(45deg, #b99224, #d42e81);
}

.highlight {
    background: -webkit-linear-gradient(145deg,rgb(28, 19, 153), #72175e);
}

.unforgettable {
    background: -webkit-linear-gradient(145deg,rgb(153, 19, 19), #72174c);
}

.fantastic {
    background: -webkit-linear-gradient(145deg,rgb(19, 153, 102),rgb(23, 114, 84));
}

.container h1#icon {
    width: 80px;
    height: 80px;

    font-size: 60px;
    position: relative;
}

wave {
    position: absolute;
    transform: translateX(-20%) rotate(10deg);
}

heart {
    position: absolute;
    transform: translateX(20%) translateY(5px) rotate(25deg);
}

.container button {
    border: none;

    font-family: inherit;
    font-size: 18px;

    border-radius: 4px;

    border: 2.5px solid rgba(0,0,0,0.1);

    cursor: pointer;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;

    transition-duration: 200ms;
}

.container button:hover {
    background: linear-gradient(90deg, rgba(254, 191, 191, 0.2) 0%, rgba(254, 240, 139, 0.1) 50%, rgba(187, 247, 208, 0.2) 100%);
    background-color: rgba(0,0,0,0.2);
}