

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
  --font-primary: 'Roboto', sans-serif;

  --color-black: rgb(0, 0, 0);
  --color-white: rgb(255, 255, 255);
  --color-red: rgb(213, 39, 39);

  --radius: 0.25rem;
}


/*
========
STYLES
========
*/

*,
*::after,
*::before {
  padding: 0;
  border: 0;
  margin: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
  visibility: hidden;
  width: 0;
  background: transparent;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-black);
}

body {
  width: 100vw;
  overflow-x: hidden;
  background-color: var(--color-white);
}

.center {
  width: 100%;
  max-width: 1000px;
  padding: 1rem;
  margin: 0 auto;
  margin-top: 1rem;
  margin-bottom: 4rem;
  text-align: center;
}

.logo {
  width: 30%;
  max-width: 160px;
}

.title {
  font-size: 2rem;
  padding-top: 1rem;
  /* padding-bottom: 1rem; */
}

.temps-container {
  width: 100%;
  max-width: 400px;
  margin: 1rem auto;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.temp-row {
  width: 100%;
  padding: 0.4rem 0.2rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.temp-row .name {
  padding-right: 0.4rem;
}

@media screen and (min-width: 800px) {
  .temps-container {
    max-width: 800px;
  }

  .temp-row {
    width: 48%;
  }
}


.selection-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  margin: 1rem auto;
}

select {
  font-size: 1.2rem;
  background-color: white;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

#thermostat {
  width: 70%;
}

#time {
  width: 30%;
}

#group-thermostat,
#group-time {
  width: 50%;
}

.spacer {
  width: 100%;
  height: 2rem;
}

