html, body {
    margin:0;
    min-height: 100%;
    background-color: rgb(53, 53, 53);
    color: white;
    /* overflow: hidden; */
}

body{
    display: flex;
    flex-direction: column;
}

header {
    position: relative;
    flex: 0 0 auto;
    text-align: center;
    font-family: 'Courier New', monospace;
}

h2{
    text-align: center;
    font-family: 'Courier New', monospace;
}

.calendar-container {
    height: calc(100vh - 80px);
    min-height: 420px;
    padding: 10px;
}

.hour-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strips-container {
    width: 90vw;
    height: 75vh;
    max-width: 1000px;
    padding: 10px;
}

svg {
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgb(53, 53, 53);
}

.info-modal {
    font-family: 'Avenir';
    display: none;
    position: fixed;
    inset: 0;

    background-color: rgba(0, 0, 0, 0.2);

    z-index: 100;

    overflow-y: auto;

    padding: 40px 20px;

    box-sizing: border-box;
}

.modal-content {
  background-color: #444;
  color: white;

  padding: 20px;

  width: min(80%, 500px);

  border-radius: 8px;

  text-align: center;

  position: relative;

  margin: auto;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.close-button:hover {
  color: #ccc;
}

.info-button {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 30px;
    height: 30px;
    border-radius: 50%;

    background-color: rgba(200, 200, 200, 0.5);
    color: black;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    cursor: pointer;

    font-family: sans-serif;
}