@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Prompt: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&display=swap');

body, html {
    background-color: rgb(16,16,18);
    font-family: "DM Sans", monospace, sans-serif;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 75vh;
    margin-bottom: 50px;
}

.content-wrap {
    flex: 1;
}

.hidden {
    display: none;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
    flex-wrap: wrap;
}

.container-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

h1{
    font-weight: 700;
    font-size: 50px;
}
h2{
    font-weight: 600;
}
h3{
    font-weight: 500;
}


a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ddd;
}

.button {
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    background-color: rgb(57, 55, 55);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "DM Sans", monospace, sans-serif;
    transition: 0.2s;
  }
  
  .button:hover {
    background-color: rgb(40, 40, 40)
  }

  .button:disabled {
    background-color: rgb(30, 30, 30);
    color: rgb(150, 150, 150);
    cursor: not-allowed;
}
.button:disabled:hover {
    background-color: rgb(30, 30, 30);
}

.container .button:hover {
    background-color: rgb(35, 35, 35);
  }

footer {
    background-color: rgb(19, 19, 20);
    color: rgb(54, 54, 54);
    padding: 20px 0;
}
footer a{
    color: rgb(54, 54, 54);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section p, .footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section ul li {
    margin: 5px 0;
}

.image-container {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.text-container {
    flex: 2;
    padding: 20px;
    box-sizing: border-box;
    min-width: 300px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .image-container,
    .text-container {
        min-width: 100%;
    }
    .text-container {
        text-align: center;
        order: -1;
    }
    .image-container img:nth-child(n+2) {
        display: none;
    }
}

.disabled{
    display: none;
}

.delayed-fade-in {
    animation-delay: 0.5s; /* Delays the animation start by 2 seconds */
}