@font-face {
    font-family: CoffeeHealing;
    src: url(../fonts/CoffeeHealing.ttf);
}

body {
    padding: 0;
    margin: 0;
    height: 95vh;
    width: 100%;
    background-color: lightgreen;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
h1 {
    font-family: CoffeeHealing;
    font-size: 4rem;
    text-decoration: underline;
}

h2 {
    text-decoration: underline;
}

p {
    font-family: CoffeeHealing;
    font-size: 2rem;
}

.mainContainer {
width: 70vh;
height: 70vh;
min-width: 70vh;
background-color: black;
display: grid;
grid-template-rows: repeat(3, 1fr);
grid-template-columns: repeat(3, 1fr);
grid-gap: 1vh;
border: 1vh solid black;
}

#information-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.block {
background-color: white;
display: flex;
justify-content: center;
align-items: center;
}

img {
object-fit: cover;
max-width: 95%;
max-height: 95%;
}

button {
    font-family: CoffeeHealing;
    color: black;
    background-color: white;
    font-size: 2rem;
    text-decoration: none;
    border: 2px solid black;
    padding: 0.5rem 1rem;
    box-shadow: 0.2rem 0.2rem 0.5rem  black ;
}

button:hover {
    text-decoration: underline;
}

button:active {
    position: relative;
    text-decoration: underline;
    top: 0.2rem;
    box-shadow: 0.05rem 0.05rem 0.5rem  black ;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    width: 100%;
}

.scoreboard {
    height: 50vh;
    width: 18%;
    background-color: white;
    border: 1vh solid black;
    border-radius: 4px;
    font-family: CoffeeHealing;
    font-size: 2rem;
    text-align: center;
}