@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap');

.cherry-bomb-one-regular {
  font-family: "Cherry Bomb One", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    row-gap: 20px;
    flex-direction: column;
    background-color: #eff1f5;
}

header {
    background-color: #dce0e8;
    display: flex;
    justify-content: space-between;
}

header h1 {
    margin-left: 30px;
    color: #4c4f69;
}

header div {
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header div button {
    border: 4px solid #acb0be;
    border-radius: 10px;
    background-color: #dce0e8;
    font-size: x-large;
    font-weight: bold;
    color: #4c4f69;
}

header div button:hover {
    background-color: #e6e9ef;
}

header div button:active {
    transform: scale(0.95);
}

#container {
    align-self: center;
    display: flex;
    flex-direction: column;
    max-height: 768px;
    max-width: 768px;
    border: 10px solid #179299;
    background-color: white;
}

.row {
    display: flex;
    height: 3em;
}

.grid {
    width: 3em;
}
