/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *

 */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.container {
  width: 100vw;
  height: 100%;
}

#rain {
  background-color: black;
  display: flex;
  flex-direction: row;
  height: 100%;
}

#buienalarm {
  display: flex;
}

#buienradar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

#weather {
  background-color: white;
  color: black;
  width: 100%;
  text-align: center;
}

#waste-collection {
  background-color: black;
  font-family: sans-serif;
  height: 100%;
  padding: 1em;
  box-sizing: border-box;
}

#waste-collection .title {
  color: gray;
}

#waste-collection .collections {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
  height: 100%;
}

#waste-collection .collection {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
  flex-grow: 1;
  padding: 3em;
  border-radius: 1em;
}

#waste-collection .fraction {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em;
}

.fraction h1 {
  font-size: 3em;
}

.fraction .logo {
  width: 64px;
  height: 64px;
}

#waste-collection .timestamp {
  font-size: 2em;
}

#photo {
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
}
