@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #888aaf;
    font-family: "JetBrains Mono", monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: opacity 0.3s ease;
    margin-bottom: 56px;
}

.back-link:hover {
    opacity: 0.7;
}

.container {
    max-width: 720px;
}

.content {
    color: white;
}

.intro {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 24px;
}

.facts-list {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 48px;
    padding-left: 36px;
}

.facts-list li {
    margin-bottom: 12px;
}

.contact {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
}

.link {
    color: #181343;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .back-link {
        margin-bottom: 30px;
    }

    body {
        align-items: flex-start;
        padding-top: 40px;
    }

    .intro,
    .facts-list,
    .contact {
        font-size: 18px;
    }

    .facts-list {
        padding-left: 24px;
    }
}
