* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bebas Neue", Impact, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #646464;
    background: radial-gradient(circle, rgba(100, 100, 100, 1) 0%, rgba(0, 0, 0, 1) 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 90%;
    margin: auto;
    padding: 40px;
    border-radius: 15px;
    text-shadow: 1px 1px 4px #000, 1px 1px 4px #000;
    text-shadow: horizontal-shadow vertical-shadow blur color;
    font-weight: 200;
    font-style: normal;
}

h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #6b9cff;
    letter-spacing: 1px;
    background: linear-gradient(to right, #6b9cff, #a7c2f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 2.5rem;
    margin-bottom: 20px;
    white-space: pre;
    line-height: 0.91;
}
