body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#fixed-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    z-index: 9999;
    box-shadow: 0px 2px 30px 0px #3b3d42;
}

#titlemid {
    color: #ffffff;
    font-size: 1.5em;
    text-align: center;
    width: 100%;
}

#logo {
    height: 50px;
    margin: 0 20px;
}

#social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

#social-icons i {
    color: #fdc74a;
    font-size: 1.5em;
    margin: 0 10px;
}

#social-icons i:hover {
    color: #ffffff;
}

#version {
    font-size: 0.4em;
    color: #ffffff;
}

hr {
    border: none;
    border-top: 2px solid #ffffff;
    width: 100%;
}

#content {
    width: 90%;
    margin: 0 auto;
    color: #fdc74a;
    padding-top: 60px;
}

#categories, #tasks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.category, .task {
    border: 1px solid #3b3d42;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
    background-color: #3b3d42;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: #fdc74a;
    flex-basis: 45%;
}

.category:hover, .task:hover {
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.1);
    color: #ffffff;
}

.prompt {
    border: 1px solid #ffffff;
    padding: 10px;
    margin: 10px;
    background-color: #3b3d42;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    color: #fdc74a;
}

button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    background-color: #fdc74a;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #d9b940;
    color: #ffffff;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #040706;
    display: flex;
    justify-content: center;
    align-items: center;
}

#description {
    color: #ffffff;
    white-space: pre-line;   
}

#reminder {
    margin-top: 50px;
    border-top: 1px solid #3b3d42;
    padding-top: 20px;
    color: #fdc74a;
}

a {
    color: #ffffff;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #000000;
    color: white;
    text-align: center;
    box-shadow: 0px 2px 30px 0px #3b3d42;
}

#activation {
    width: 80%;
    margin: 74px auto;
    padding: 20px;
    color: white;
}

#activation img {
    display: block;
    margin: 10px auto;
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

#activation img:hover {
    transform: scale(1.4);
}

.hidden-content {
    display: none;
}

.clickable-header {
    cursor: pointer;
}

.clickable-header:hover {
    color: #fdc74a;
}

@media only screen and (max-width: 1200px) {
    #content {
        width: 95%;
    }

    .category, .task {
        flex-basis: 90%;
    }
}

@media only screen and (max-width: 768px) {
    #fixed-section {
        flex-direction: column;
    }

    #social-icons i {
        font-size: 1.2em;
        margin: 5px;
    }

    #titlemid {
        font-size: 1.2em;
    }

    #content {
        padding-top: 120px;
    }

    #activation {
        width: 90%; 
        margin: 10px auto; 
        padding: 10px; 
    }

    #activation img {
        width: 100%; 
        max-width: none;
    }
}

@media only screen and (max-width: 576px) {
    #logo {
        height: 40px;
    }

    #activation {
        width: 100%; 
        margin: 5px auto; 
        padding: 5px; 
    }

    #activation img {
        width: 90%; 
        margin: 5px auto;
    }
}


h1 {
    font-size: 2.5em; 
}

@media only screen and (max-width: 1200px) {
    h1 {
        font-size: 3em; 
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 2em; 
    }
}

@media only screen and (max-width: 576px) {
    h1 {
        font-size: 1.5em; 
    }
}