@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&display=swap');

body {
    font-family: "Roboto", system-ui;
}

#content {
    width: 50%;
    margin-left: 25%;
    text-align: left;
    justify-content: center;  
    padding: 1.5rem;
    margin-bottom: 10px;
    border-radius: 10px;
}

#content img {
    max-width: 80%;
    max-height: 30%;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color:white;
}

#content ul {
        list-style-position: inside;
}

#content table {
     margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
        border: solid ;
    border-radius: 5px;
}

#content table th {
    border:solid;

}

#content table td {
    border: solid;
}

mjx-container {
    font-family: inherit !important;
    font-style: normal !important;
}
mjx-container * {
    font-family: inherit !important;
    font-style: normal !important;
}


button {
    font-family: "Poppins", "Roboto", sans-serif;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: 12px;
    background-color: #007aff;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.12);
    font-size: 1rem;
    margin-left: 2rem;
}

button:hover {
    background-color: #005ecb;
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) inset;
}

.theme {
    max-width: 3rem;
    max-height: 3rem;
    border: none;
    background: none;
    box-shadow: none;
    padding: none;
}

.theme img{
    max-width: 3rem;
    max-height: 3rem;
}

.theme:hover {
    cursor: pointer;
    background: none;
    box-shadow: none;
}

@media (max-width: 400px) {
    #content {
        margin-top: 10px;
        width: 90%;
        margin-left: 1%;
        padding: 0.5rem;
    }

}