body {
    background-color: #1f1f1f;
    color: aliceblue;
    font-family: "Tajawal", sans-serif;
    margin: 32px;
}

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

h1 {
    font-size: 50px;
    text-align: center;
}

h2 {
    font-size: 30px;
    text-align: center;
}

.box {
    position: fixed;
    top: 1%;
    left: 1%;
    transform: translate(1%, 1%);
    -webkit-transform: (1%, 1%);
}

.ip {
    font-size: 75%;
    color: rgb(190, 190, 190);
}

#no-margin {
    margin-top: 0px;
    margin-bottom: 0px;
}

.menu, .old-menu {
    font-size: 20px;
    background-color: #3a3a3a;
    border-radius: 15px;
    max-width: 1148px;
    margin: 0 auto;
}

.menu ul, .old-menu ul {
    text-align: center;
    padding: 20px;
    text-decoration: none;
}

.menu li, .old-menu li {
    display: inline-block;
}

.menu li a, .old-menu li a {
    display: inline-block;
    height: auto;
    width: 150px;
    color: aliceblue;
    background-color: #2d2d2d;
    padding: 10px;
    margin: 5px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu li a:hover, .old-menu li a:hover {
    background-color: #505050;
}

#green:hover {
    color: #ff09ca;
    background-color: #00ffc8;
}

#brand:hover {
    color: #8ec641;
    background-color: #003359;
}
#brand {
    font-size: 16px;
}

.collapsible {
    background-color: #3a3a3a;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    max-width: 1148px;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

.active, .collapsible:hover {
    background-color: #505050;
}

.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #1f1f1f;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 35px;
        margin-top: 50px;
    }

    .ip {
        font-size: 60%;
    }

    .menu, .old-menu {
        font-size: 25px;
    }

    .menu ul, .old-menu ul {
        padding: 20px;
    }

    .menu li a, .old-menu li a {
        width: 100px;
        font-size: 25px;
    }

    .collapsible {
        padding: 15px;
        font-size: 15px;
    }
}

@media screen and (max-width: 250px) {
    * {
        color: transparent !important;
        visibility: hidden !important;
        border: none !important;
    }
    
    body {
        visibility: visible !important;
    }
    
}
