@import url('fonts/main_font.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'StratosSkyeng', sans-serif;
}

body {
    background-color: #e9e5f3;
    color: #2d264b;
    min-height: 100vh;
}

.content {
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 60px 0;
}

.center {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #8b5cf6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn:hover {
    background-color: #6d28d9;
}

.in-one-line {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-pic {
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.meme-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.meme-list img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1 { font-size: 36px; color: #1a1a1a; margin-bottom: 20px; }
h2 { font-size: 24px; color: #6d28d9; margin-bottom: 20px; }
p, li { font-size: 18px; line-height: 1.6; color: #4b4b4b; }
ul, ol { margin-left: 20px; margin-top: 15px; }
li { margin-bottom: 10px; }
li::marker { color: #8b5cf6; font-weight: bold; }