/*
Theme Name: Octyle Theme
Author: Manuel Hurlimann
Version: 1.0
*/


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at center, #0d0d1f 0%, #050510 100%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

/* Wrapper (auto applies to content) */
body > * {
    max-width: 700px;
}

/* Heading */
h1 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Paragraphs */
p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Links */
a {
    color: #c084fc;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #e879f9;
    text-decoration: underline;
}

/* Sup ® */
sup {
    font-size: 12px;
}