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

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    top: 0;
    left: 0;
    color: #0f0c0c;
    border-bottom: 3px solid #ff6600;
}

header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
    color: #ff6600;
    }

header .auth-buttons .sign-in {
    background-color: #0b87f3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
    header .auth-buttons a {
        color: white;
        background-color: #ff6600;
        padding: 10px 15px;
        text-decoration: none;
        font-size: 14px;
        border-radius: 5px;
        transition: background-color 0.3s;
    }
    
    header .auth-buttons a:hover {
        background-color: #e55d00;
    }

/* Categories Section Styling */
.categories {
    padding: 40px 20px;
    background-color: #fff;
    margin-top: 100px; /* Ensure space for the fixed header */
}

.categories h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.category-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.category-container a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.category-container a:hover {
    transform: scale(1.05);
}

.category {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 95%;
    margin-bottom: 20px;
    margin-top: 20px;
    border: 1px solid #ddd;
    text-align: left;
}

.category h3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 0;
    color: #090807;
    text-transform: uppercase;
}

.category p {
    font-size: 14px;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    margin: auto;
    text-align: center;
    position: relative;
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content input {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-content button {
    background-color: #0b87f3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #333;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

main {
    padding: 120px 20px; 
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    align-items: center;
}

h2 {
    color: #333;
    text-align: center;
}


ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

ul li {
    margin-bottom: 5px;
    color: #555;
    font-size: 16px;
    padding-left: 5px;
    position: relative;
}

.auth-buttons a {
    background-color: #ff6600;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
}
.intro {
    text-align: center;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.intro h2 {
    margin-top: 0;
    font-size: 28px;
    color: #444;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.intro p {
    font-size: 16px;
    color: #666;
}

ul li:before {
    content: "•";
    color: #ff6600;
    font-weight: bold;
    position: absolute;
    left: -15px;
    top: 0;
}
.animation {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.animation .line {
    width: 10px;
    height: 0;
    background-color: #037af1;
    margin: 0 10px;
    animation: slideIn 1s forwards ease-in-out;
}

/* Keyframe Animation */
@keyframes slideIn {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

/* Hiding Animation */
.hide {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
body.funny-page {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
    color: #333;
}






