body {
    font-family: "Inter UI", Helvetica, Arial, sans-serif;
    font-size: 130%;
    word-break: break-word;
    overflow-wrap: break-word;
}

.head {
  display: flex;
  min-height: 100px;
  flex-wrap: wrap;
}

.description {
  flex: 1;
  min-width: 54%;
  word-break: break-word;
  overflow-wrap: break-word;
  padding: 0px 10px 10px 10px;
}

.buttons {
  flex: 1;
  display: flex;
  align-items: center;
}

.button {
  display: flex;
  flex: 1;
  height: 50px;
  min-width: 110px;
  margin: 5px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: black;
  text-decoration: none;
  background-color: #c0c0c0;
}

.interaction {
  background-color: #ebebeb;
}

.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.itemContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    align-content: space-between;
    padding: 30px;
    min-width: 300px;
}

.itemContainer h1 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.itemContainer p {
  margin-top: 0;
}

img {
    max-width: 100%;
    max-height: 50vh;
}

@media (max-width: 700px) {
  .buttons {
    flex-wrap: wrap;
  }

  .description {
    min-width: 90vw;
  }
}

body.dark-mode {
    background-color: black;
    color: white;
}

body.dark-mode .button {
    background-color: #5f5f5f;
    color: white;
}

#darkMode {
    cursor: pointer;
}

body.dark-mode .interaction {
  background-color: #313131;
}