@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&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&display=swap');

* {
    background-color: #1E1E1E;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.container {
    max-width: 1380px;
    margin-top: 50px;
    margin: auto;
    padding: 50px;
}

.title-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
}

.content-section {
    justify-content: space-between;
    display: flex;
    /* align-items: center; */
    gap: 50px;
    margin-top: 50px;
}

.list-title {
    font-size: 20px;
    color: #00E701;

}

.subtitle {
    font-size: 20px;
}

.challenge-case {
    background: url("/assets/Case_central.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    border-radius: 30px;
    border: 2px solid #FFF;
}

.challenge-case p {
    background: none;
}

.challenge-21 {
    font-weight: bold;
}

.link-sections {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-direction: column;
}

.link-section-1, .link-section-2 , .link-section-3 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.link-section-1 a img, .link-section-2 a img, .link-section-3 a img, .link-section-4 a img {
    border-radius: 20px;
}

@media screen and (max-width: 1150px) {
    .title-section {
        text-align: center;
    }
    .content-section {
        flex-direction: column;
    }
  }

  @media screen and (max-width: 600px) {
    .right-section a img {
        width: 100%;
    }
    .link-sections .link-section-1, .link-sections .link-section-2, .link-sections .link-section-3 {
        flex-direction: column;
    }
  }