body{
    margin: 0;
    padding: 0;
    background-color: lightgray;
}

h1{
    text-align: center;
}

#Select1,#Select2{
    height: 2.5rem;
    width:10rem;
    text-align: center;
    font-size: 1.3rem;
    background-color: aqua;
    border-radius: 0.5rem;
    outline: none;
}

#Select1,#Select2:focus{
    outline: none;  
}


.Opt {
    background-color: lightyellow;
    color:#606060;
    font-size: 1.1rem;
 }

#Parent{
display: flex;
flex-wrap: wrap;
align-items: center;
margin-top: 4rem;
padding: 1rem;
justify-content:space-around;
gap: 1rem;
}


.Card{
width: 30%;
box-shadow:0 0 12px #222;
border-radius:0.625rem;
padding: 1rem;
background-image:linear-gradient(100deg,lightpink,lightyellow,lightblue);
cursor: pointer;
}

.Card img{
width: 100%;
height: auto;
border-radius:0.5rem;
}

.Card:hover h1{
text-decoration: underline;
}

#detail{
margin-left: 1rem;
font-size: 1.2rem;
}

.selector{
width: 100%;
display: flex;
justify-content: space-evenly;
}

#detail {
        margin-left: 1rem;
        font-size: 1.2rem;
        width: 5rem;
}


nav{
    height: 6rem;
}
.navbar-brand,.offcanvas-title{
   font-size: 2rem;
   font-weight: 700;
   color:white!important;
   cursor: pointer;
   transition: 0.3s;
}

.navbar-brand:hover,.offcanvas-title:hover{
  transform: translateX(20px) scale(1.2);

}

.Card{
 margin-top: 5rem;
}







@media(max-width:994px){


  .selectParent{
    align-items: center !important;
    border: 1px solid black;
  }
 
  .navbar-toggler,.navbar-toggler-icon{

    display: block !important;
  }

  .selectParent{
    display: none !important;
  }

}


@media (max-width: 1024px) {
    .Card {
        width: 45%;
    }
}
                           
                        
@media (max-width: 768px) {
    .Card {
        width: 90%;
    }

    .selector {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    #Select1,
    #Select2 {
        width: 60%;
    }
}