html,body{
    background-color: aliceblue;
    position: relative;
    padding: 0;
    margin: 0;
}
*{
  font-family: Arial;
}
.centereDiv{
    width: 100vw;
    height: 40px;
    background-color: #673f81;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.catname{
    background-color: none;
    border-radius: none;
    border: none;
    background: none;
    text-decoration: none;
    font-size: 30px;
    color: #a56bce;
    transition: all ease 0.3s;
}
.catname:hover{
    color: #cd87ff;
}
.catImg{
    max-width: 90vh;
    max-height: 75vh;
    border-radius: 15px;
    transition: all ease 0.3s;
}
.catImg:hover{
    transform: scale(1.05);
}
.centery{
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.infoCard{
    width: 75vw;
    height: 50vh;
    background-color: #f7ebff;
    border-radius: 10px;
    color: #3e284e;
    padding: 20px;
    margin-left: 12.5vw;
    box-shadow: 0px 4px 4px 0px #00000032;
    margin-bottom: 10px;
}
.info{
    font-size: 35px;
}