body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 100vh;
    flex-wrap: wrap;
    margin: 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    background: #04153f;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
}

.outer-box {
    margin-top: 30px;
    width: 380px;
    height: 420px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    background: whitesmoke;
}

.inner-box {
    width: 280px;
    text-align: center;
}

.img {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
}

.outer-box:hover {
    box-shadow: 0 0 7px rgba(0, 0, 0, 1.6);
}
/* .img-time{
  background-color: black;
  padding: 5px;
  border-radius: 20px;
} */

.solve-btn {
    padding: 10px 20px;
    font-size: 15px;
    color: white;
    background-color: orangered;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: orangered;
    color: whitesmoke;
    border: none;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.solved-btn {
    padding: 10px 20px;
    font-size: 15px;
    color: white;
    background-color: green;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: whitesmoke;
    border: none;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.tech {
    font-size: 18px;
    font-family: "JetBrains Mono", monospace;
    font-weight: bold;
    color: #555;
    margin-top: 10px;
}

.level {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    font-size: 16px;
    padding: 4px 6px;
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
}
.level.easy {
    background-color: rgba(0, 128, 0, 0.3);
    color: green;
}
.level.medium {
    background-color: #fff3cd;
    color: #f1910a;
}
.level.hard {
    background-color: #f8d7da;
    color: #d81316;
}
