
*{
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Roboto', sans-serif;
}

.home-page{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-image: url('../assests/bg2.png');
    background-size: cover;
}

.home-page h1{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 2px 2px 10px #19183B;
    border-radius: 20px;
    height: 20%;
    width: 70%;
    border: 2px solid #19183B;
    background: transparent;
}

.cards{
  height: 70%;
  width: 90%;
  /* box-shadow: 2px 2px 10px #19183B; */
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.cards a{
    height: 80%;
    width: 20%;
    text-decoration: none;
    color: #fff;
}

.card{
    height: 100%;
    width: 100%;
    box-shadow: 2px 2px 20px #19183B;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: #000;
    background-color: rgba(255, 255, 255, 0.3);
    /* background: transparent; */
}

.card img{
    height: 50%;
    width: 70%;
    border-radius: 50%;
}

.card:hover{
    transform: scale(0.95);
}