body{height:100vh;width:100vw;margin:0;background-color:var(--main-color)}#root{display:flex;flex-direction:column}:root{--main-color: rgb(26, 210, 173);--white-color: rgb(236, 255, 250);--text-color: rgb(32, 104, 86);--highlight-color: rgb(254, 229, 37)}.board{display:grid;grid-template-columns:repeat(5,1fr);gap:32px;margin:64px}.card{height:200px;width:200px;display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:var(--white-color);border-radius:12px;transition:all .3s ease-in-out;border:4px solid var(--text-color)}.card:hover{box-shadow:0 0 20px var(--white-color)}.card:hover img,.card:hover .text{transform:scale(1.1)}.text{font-family:Gill Sans,Gill Sans MT,Calibri,Trebuchet MS,sans-serif;color:var(--text-color);font-weight:700;transition:all .3s ease-in-out}.medium{font-size:32px;color:var(--white-color);margin-bottom:24px}.small{font-size:20px}.title{font-family:Gill Sans,Gill Sans MT,Calibri,Trebuchet MS,sans-serif;text-shadow:5px 5px 0px var(--text-color);margin:32px 0 0 64px;color:var(--white-color);font-weight:700;font-size:50px}.score{margin-left:64px}img{transition:transform .3s ease-in-out;width:124px;height:124px}p{margin:0}
