html {
    box-sizing: border-box;
    font-size: 16px;
    color: white;
}

a {
    color: white;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", SansSerif, sans-serif;
    font-weight: 100;
    font-style: normal;
    background: linear-gradient(135deg, #2f1038 0%, #e52870 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
}

.main-text {
    margin-top: 16px;
    font-weight: 400;
    padding: 20px;
    border-radius: 8px;
    background-color: #2f1038;
}

.metrics {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
}

.metric {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    border-radius: 8px;
    gap: 8px;
    background: linear-gradient(135deg, #2f1038 0%, #851840 100%);
}

video {
    background-color: #2f1038;
    padding: 1px;
    box-sizing: border-box;
}