@import url('fonts/main_font.css');

* {
    margin: 0;
    font-family: 'StratosSkyeng', sans-serif;
    box-sizing: border-box;
}

.content {
    background-size: cover;
    min-height: 100vh;
    background-color: #f5f0e8;
    padding: 40px 20px;
}


nav {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.in-one-line {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #3498db;
    color: white;
}

.center {
    padding-left: calc(50% - 500px);  
    padding-right: calc(50% - 500px);
}


h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    color: #34495e;
    margin-bottom: 30px;
}


.feature-list {
    background-color: white;
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 30px 0;
    max-width: 600px;
}

.feature-list ol {
    padding-left: 25px;
}

.feature-list li {
    font-size: 18px;
    line-height: 2;
    color: #2d3436;
}

img {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: 30px 0;
    max-width: 100%;
    height: auto;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #2d3436;
    margin-bottom: 20px;
    max-width: 800px;
}


.facts-list {
    background-color: white;
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.facts-list ul {
    list-style-type: disc;
    padding-left: 25px;
}

.facts-list li {
    font-size: 18px;
    line-height: 2.2;
    color: #2d3436;
    margin-bottom: 10px;
}

.facts-list li::marker {
    color: #3498db;
    font-size: 1.2em;
}


.memes-info {
    background-color: white;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 30px 0;
    max-width: 600px;
}

.memes-info ol {
    padding-left: 25px;
}

.memes-info li {
    font-size: 16px;
    line-height: 1.8;
    color: #2d3436;
    margin-bottom: 5px;
}

.meme-gallery {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.meme-gallery img {
    width: 350px;
    height: auto;
    transition: transform 0.3s ease;
}

.meme-gallery img:hover {
    transform: scale(1.03);
}


.quotes-list {
    background-color: white;
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.quotes-list ul {
    list-style-type: none;
    padding-left: 0;
}

.quotes-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3436;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 15px;
}

.quotes-list li::before {
    content: "❝";
    color: #e67e22;
    font-size: 30px;
    position: absolute;
    left: -5px;
    top: -5px;
    opacity: 0.5;
}

.quote-author {
    display: block;
    margin-top: 8px;
    text-align: right;
    font-weight: bold;
    color: #7f8c8d;
    font-size: 16px;
}


.index-page .content {
    background-color: #f5f0e8;
}

.facts-page .content {
    background-color: #e8f5f0;
}

.memes-page .content {
    background-color: #f0e8f5;
}

.quotes-page .content {
    background-color: #e8eaf5;
}

.facts-page h1 {
    border-bottom: 4px solid #3498db;
    padding-bottom: 15px;
    display: inline-block;
}

.memes-page h1 {
    border-bottom: 4px solid #9b59b6;
    padding-bottom: 15px;
    display: inline-block;
}
.quotes-page h1 {
    border-bottom: 4px solid #e67e22;
    padding-bottom: 15px;
    display: inline-block;
}