body {
  color: white;
  font-family: Verdana;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: black;
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  /*background-image: url();
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;*/
}

.grid-container {
    background-color: white;
    color: black;
    width: 80%;
    height: 80%;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    text-align: left;
    display: grid;
    grid-template-columns: 90px 2fr 1fr;
    gap: 1.5rem;
}

.col {
    border: 1px solid black;
}

#links {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

#widgets {
    text-align: center;
    display: flex;
    flex-direction: column;
}

#calendar {
    display: grid;
    grid-template-rows: auto 1fr 4fr;
}

#weekdays, #days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

#days {
    grid-template-rows: repeat(4, 1fr);
}

.current {
    border: 1px solid red;
}

img[src*="buttons/"] {
    width: 88px;
    height: 31px;
    margin: 0;
}