body {
    margin: 0;
    padding: 0;
    background: hsl(224, 32%, 12%);
    background-image: conic-gradient(
        from 0deg at 50% 50%,
        blue,
        purple,
        purple,
        blue
    );
    background-blend-mode: multiply;
    color: #f0f0f0;
    font-family: 'Satoshi', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    filter: drop-shadow(0 0 50px rgba(0, 0, 0, 100));
}
.main {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    width: 80%;
    max-width: 1000px;
    gap: 10px;
}
.content {
    flex: 1;
}
.title {
    space-between: 200px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 64px;
    margin-bottom: 20px;
    color: #ffffff;
    filter: drop-shadow(0 0 30px #ffffff);
}

h3 {
    font-size: 24px;
    line-height: 1.6;
    color: #c0c0c0;
}
img {
    width: 600px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
