@import url('fonts/main_font.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'StratosSkyeng', sans-serif;
}

body {
    background-color: #0b1020;
    color: #e9eeff;
}

.content {
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 32px 0;
}

.center {
    padding-left: calc(50% - 500px);
    padding-right: calc(50% - 500px);
}

@media (max-width: 1000px) {
    .center {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.in-one-line {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.nav {
    margin-bottom: 24px;
}

.nav-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(60, 120, 255, 0.22);
    border: 1px solid rgba(120, 170, 255, 0.55);
    color: #dfe7ff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.nav-btn:hover {
    background: rgba(60, 120, 255, 0.38);
    border-color: rgba(160, 215, 255, 0.75);
    transform: translateY(-1px);
}

.nav-btn[aria-current="page"] {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

h1 {
    font-size: 40px;
    margin-bottom: 14px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 500;
}

.profile {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.favorite-image {
    width: 280px;
    max-width: 100%;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.18);
}

.about {
    flex: 1;
    min-width: 240px;
    font-size: 18px;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.28);
    padding: 14px 16px;
    border-radius: 16px;
}

.list {
    list-style: disc;
    background: rgba(0, 0, 0, 0.28);
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 22px;
}

ul,
ol {
    padding-left: 22px;
}

li {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.facts,
.quotes {
    background: rgba(0, 0, 0, 0.28);
    padding: 16px 18px;
    border-radius: 16px;
}

.facts {
    list-style: decimal;
}

.quotes {
    list-style: disc;
}

.memes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
}

.meme-image {
    width: 260px;
    max-width: 100%;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.2);
    padding: 6px;
}

