* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
}

#main {
    height: 100%;
    width: 100%;
    background-color: rgb(194, 219, 249);
    padding: 20px; 
    display: flex;
    gap: 50px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card {
    height: 45%;
    width: 15%;
    background-color: white;
      display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    border: none;
    border-radius: 30px;
    box-shadow: 5px 5px 20px black;
}

.imgu img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border: none;
    border-radius: 50%;
}

.card p {
    text-align: center;
}

.new button {
    padding: 10px 20px;
    color: white;
    background-color: royalblue;
    border: none;
    border-radius: 20px;
}

.new button:hover {
    background-color: white;
    color: royalblue;
     padding: 10px 20px;
    border: 1px solid royalblue;
    border-radius: 20px;
}

i:hover {
  color: blue;
}



