.container {
    padding-inline: 1.5rem;
    margin-inline: auto;
    width: 100%;
    max-width: 1440px;
}

body {
    background-color: #0D171C;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #05171E;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #73B7D0;
    border-radius: 10px;
}

.d_none {
    display: none;
}

.py-4 {
    padding-block: 1.5rem;
}

a {
    text-decoration: none;
    color: white;
    transition: 200ms all;
}

a:hover {
    text-decoration: underline;
    color: #5cb9db;
}

header {
    background-color: #082129;
    margin-bottom: 3rem;
}

header img {
    width: 48px;
}

.header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.align-h1-and-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

main {
    background-color: #0D171C;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.empty-alert {
    font-weight: bold;
    font-size: 2rem;
}

.align-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.align-loading-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 3rem;
}

.align-loading-btn img {
    height: 50px;
    width: 50px;
    transition: 200ms all;
}

.align-loading-btn img:hover {
    cursor: pointer;
    transform: scale(1.1);
    filter: saturate(200%);
}

footer {
    background-color: #082129;
    margin-top: 3rem;
}

footer img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    object-fit: cover;
}

.center-footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 1400px) {
    .container {
      max-width: 1140px;
    }
  }

@media (max-width: 1200px) {
    .container {
      max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
      max-width: 720px;
    }
}

@media (max-width: 768px) {
    .container {
      max-width: 540px;
    }
}

@media (max-width: 576px) {
    .container {
      max-width: 100%;
    }
    h1 {
        display: none;
    }
    .card {
        width: 16rem;
    }
    .card-img-background img {
        width: 200px;
    }
}