@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);

#my101{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: "Raleway", Arial, sans-serif;
background: #7f9ead;
}

.card {
position: relative;
width: 300px;
height: 300px;
border-radius: 10px;
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
transition: 0.3s;
padding: 30px 50px;
background: #fff;
cursor: pointer;
margin-right: 30px;
}

.card:hover {
height: 420px;
}

.imgbox {
position: relative;
width: 100%;
height: 100%;
transform: translateY(-80px);
z-index: 99;
}

img {
width: 100%;
border-radius: 10px;
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
}

.content {
padding: 10px 20px;
text-align: center;
transform: translateY(-450px);
opacity: 0;
transition: 0.3s;
}

.card:hover > .content {
opacity: 1;
transform: translateY(-80px);
}

.content h2 {
color: #7f9ead;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
}

.carousel-item img {
    height: 400px; /* Set the desired height of the carousel images */
    object-fit: cover;
}

.searchBar{
    width: 300px;
    height: 50px;
    border-radius: 10px;
}

.navTop{
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 50px;
    margin-bottom: 10px;
  }
  .navTop img{
    width: 150px;
    height: 50px;
  }
.navTop div{
   width: 350px;
   height: 50px;
   display: flex;
   justify-content: space-evenly;
}
.navTop button{
    width: 150px;
    height: 50px;
    border-radius: 10px;
}
.navTop button:nth-child(2){
    background-color: blue;
}
.navTop button:nth-child(2):hover{
    background-color: rgb(92, 92, 170);
}