* {
  font-family: 'Montserrat', sans-serif;
}

/* HEADERS  */
h1 {
  color: #FFF;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
}

h2 {
  color: #CBC9CF;
  font-weight: 300;
}

h3 {
  color: #FFF;
  font-weight: 300;
  font-size: 1.125rem;
}

header {
  background-color: #46424d;
  color: #FFF;
}

/* BODY */

p {
  color: #cbc9cf;
  font-size: 1rem;
  margin-bottom: 5px;
  margin-top: 5px;
}

body {
  margin: 0px;
  background-color: #2B2733;
  font-weight: 300;
}

/* PAGE VIEWS */

.main-view {
  flex: 2;
  padding: 20px;
}

.user-interaction {
  background-color: #46424d;
  box-shadow: 3px 3px 2px 1px #26222d;
  border-radius: 5px;
  padding: 30px 100px;
}

.center {
  text-align: center;
  height: 65vh;
}

.min, .sec {
  flex: 1;
}

.activity-desc {
  font-size: 1.5rem;
  margin: 25px 0px 0px 0px;
}

.clock {
  font-size: 3.75rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 40px;
}

input {
  border: none;
  border-bottom: 1px solid #cbc9cf;
  color: #CBC9CF;
  background-color: transparent;
  width: 100%;
  font-size: 1.125rem;
}

.input-warning {
  border-bottom: 1px solid #efb7ec;
}

.times {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

.study-timer {
  border-color: #b3fd78;
}

.meditate-timer {
  border-color: #c278fd;
}

.exercise-timer {
 border-color: #fd8078;
}

aside {
  flex: 1;
  border-left: 2px solid #46424d;
  padding: 20px;
}

/* BUTTONS */

.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

button {
  width: 180px;
  height: 80px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 1.125rem;
  cursor: pointer;
}

.user-specs-btn {
  background-color: #fff;
  color: #2B2733;
  white-space: nowrap;
  font-size: 1.125rem;
  height: 40px;
  width: 220px;
  margin-top: 60px;
  margin-right: 0px;
}

.create {
  width: 330px;
}

.start-button {
  display: flex;
  justify-content: flex-end;
}

.start-timer {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
}

/* ICONS */

.icon {
  width: 15%;
}

.warning-icon {
  width: 1em;
  margin-right: 0.5em;
}

.warning-message {
  margin-top: 15px;
  color: #efb7ec;
}

.study-active {
  border: 2px solid #b3fd78;
  color: #b3fd78;
}

.meditate-active {
  border: 2px solid #c278fd;
  color: #c278fd;
}

.exercise-active {
  border: 2px solid #fd8078;
  color: #fd8078;
}

main {
  background-color: #2B2733;
  color: #CBC9CF;
  display: flex;
  font-weight: 300;
}

/* ACTIVITY CARDS */
.card-section {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-text {
  text-transform: capitalize;
  font-weight: bold;
}

.card-content {
  background-color: #46424d;
  border-radius: 5px;
  box-shadow: 3px 3px 2px 1px #26222d;
  padding: 6px;
  text-align: left;
  color: #fff;
  margin: 0px 0px 20px 0px;
}

.line {
  margin: 5px;
  border-radius: 5px;
  width: 4px;
}

.study-line {
  background-color: #b3fd78;
}

.meditate-line {
  background-color: #c278fd;
}

.exercise-line {
  background-color: #fd8078;
}

.card-top {
  display: flex;
  justify-content: space-between;
}

.card-desc {
  font-size: 0.75rem;
}

/* MEDIA QUERIES */

/* 1281px and higher desktops */
@media (min-width: 1281px) {
  main {
    min-height: 890px;
  }

  .buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .min {
    margin-right: 60px;
  }

  .sec {
    margin-left: 60px;
  }
}

/* 1025px - 1280x screens | Laptops & Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
  main {
    min-height: 774px;
  }

  .mid-btn {
    margin-left: 10px;
    margin-right: 10px;
  }

  .buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .min {
    margin-right: 60px;
  }

  .sec {
    margin-left: 60px;
  }
}

/* 768px - 1024px | Tablets (portrait) */
@media (min-width: 768px) and (max-width: 1024px) {
  main {
    min-height: 774px;
    display: flex;
    flex-wrap: wrap;
  }

  .main-view {
    display: flex;
    flex-wrap: wrap;
  }

  .buttons {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .times {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}

/* 768px - 1024px | Tablets (landscape) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  main {
    min-height: 772px;
  }

  .buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .times {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}

/* 481px to 767px | Large Phones/Small Tablets */
@media (min-width: 481px) and (max-width: 767px) {
  main {
    min-height: 772px;
    display: flex;
    flex-wrap: wrap;
  }

  .main-view {
    display: flex;
    flex-wrap: wrap;
  }

  .buttons {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .times {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}

/* 481px to 767px | Large Phones/Small Tablets */
@media (min-width: 320px) and (max-width: 480px) {
  main {
    min-height: 772px;
    display: flex;
    flex-wrap: wrap;
  }

  .main-view {
    display: flex;
    flex-wrap: wrap;
  }

  .buttons {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .times {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.hidden {
  display: none;
}
