*{
    padding:0;
    margin:0;
}

body{
    display:flex;
    flex-direction:column;
    /* justify-items: center; */
    align-items: center;
}
h1{
    margin:5vh 0px;
}
.container{
    display:flex;
    flex-wrap: wrap;
}
.card{
    border:1px solid red;
    height:100px;
    width:200px;
    margin:5vh 8vh;
    border-radius:10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
a{
    text-decoration:none;
    color: black;
}
