* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

 
#logo-container {
    position: fixed;
    top: 0%;
    left: 0%;
    cursor: pointer;
  }
  
  #logo-container img {
    width: 110px; /* Adjust the width and height to match your logo */
    height: 110px;
  }
  .logo-button{
    border: transparent;
    background-color: transparent;
    cursor: pointer;
  }
  #logo-container-back {
    position: fixed;
    bottom: 10px;
    left: 10px;
    cursor: pointer;
  }
  
  #logo-container-back img {
    width: 30px; /* Adjust the width and height to match your logo */
    height: 30px;
  }
  .logo-button{
    border: transparent;
    background-color: transparent;
    cursor: pointer;
  }

.title{
    top: 10px;
    position: relative;
    color: rgb(169, 181, 191);
    text-align: center;
    width: 100%;
    font-size: 30px;
    font-family: Lucida Console;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #36454F;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding: 100px 50px;
}

.container .card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 350px;
    max-width: 100%;
    height: 300px;
    background: white;
    border-radius: 20px;
    transition: 0.5s;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.container .card:hover {
    height: 400px;
}

.container .card .img-box {
    position: absolute;
    top: 20px;
    width: 300px;
    height: 220px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}

.container .card:hover .img-box {
    top: -100px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.container .card .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .card .content {
    position: absolute;
    top: 275px;
    width: 100%;
    height: 35px;
    padding: 0 30px;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

.container .card:hover .content {
    top: 150px;
    height: 250px;
}

.container .card .content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr);
}

.container .card .content p {
    color:#36454F ;
}

.container .card .content a {
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    background: var(--clr);
    color: white;
    font-weight: 500;
}

.container .card .content a:hover {
    opacity: 0.8;
    background-color: rgb(47, 16, 42);
    color: rgb(255, 255, 255);
}

@media (max-width: 480px) {
    .container .card {
        width: 230px;
        border-radius: 15px;
    }

    .container .card .img-box {
        width: 185px;
        border-radius: 10px;
    }

    .container .card .content p {
        font-size: 0.8rem;
    }

    .container .card .content a {
        font-size: 0.9rem;
    }

    .logo-button {
        height: 50%;
        width: 30%;
    }
}

@media (max-width: 48px){
    .logo-container .logo-button{
        width: 50%;
        height: 30%;
    }
}