*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2 {
    font: inherit;
}

body {
    font: 16px/1.2 'Poppins', sans-serif;
    background: linear-gradient(45deg, hsl(0deg 0% 0% / 70%), rgb(1 22 112 / 87%));
}

.appHeader {
    margin-top: 20px;
}

.tablinks {
    background: #212121 !important;
    color: white !important;
}

.nav-link.active {
    background: #363636 !important;
    color: #888888 !important;
}

.search {
    background: black;
    color: white;
    border-radius: 25px;
}

.search.input {
    color: white;
}

.appsHeader {
    color: white;
}

.fullscreen {
    display: block;
    color: white;
    margin: 20px;
    font-size: 25px;
    float: right;
    background: #363636;
    padding: 10px;
    border-radius: 5px;
}

.footer {
    position: fixed;
    bottom: 0;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.center {
    display: flex;
    width: 75%; /* Adjust the width as needed */
    height: 25vh;
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
    color: white;
    margin: 20px;
    font-size: 100px;
    background: #363636;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}