/* Fonts Import */
@font-face {
  font-family: "Concert One";
  src: url("../fonts/ConcertOne-Regular.ttf");
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Concert One", Arial, Helvetica, sans-serif;
}
main .container {
  width: 80%;
  margin: 0 auto;
}
.meteo-app {
  width: 100%;
  /* max-height: 40rem; */
  max-height: 69vh;
  margin: 0 auto;
  background-image: linear-gradient(to right bottom, #0d72cb, #771ab8);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  overflow: auto;
}
.search {
  display: flex;
  flex-direction: row;
  align-items: center;
}
input[type="search"] {
  padding: 0.7rem;
  border: none;
  border-radius: 0.3rem 0 0 0.3rem;
  -webkit-border-radius: 0.3rem 0 0 0.3rem;
  -moz-border-radius: 0.3rem 0 0 0.3rem;
  -ms-border-radius: 0.3rem 0 0 0.3rem;
  -o-border-radius: 0.3rem 0 0 0.3rem;
  width: 100%;
}
input[type="search"]:focus {
  outline: none;
}
input[type="submit"] {
  padding: 0.7rem;
  border: none;
  border-radius: 0 0.3rem 0.3rem 0;
  -webkit-border-radius: 0 0.3rem 0.3rem 0;
  -moz-border-radius: 0 0.3rem 0.3rem 0;
  -ms-border-radius: 0 0.3rem 0.3rem 0;
  -o-border-radius: 0 0.3rem 0.3rem 0;
  background-color: #e9e9e9;
  cursor: pointer;
  color: #555;
}
.loader {
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.7rem;
}
.meteo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ville {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
}
.date {
  color: #fff;
  font-size: 1.7rem;
}
.temperature {
  color: #fff;
  font-size: 6rem;
}
.temp {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
}
.search,
.ville,
.date,
.temperature,
.temp {
  margin: 1rem;
  text-transform: uppercase;
}
/**/
.prevision {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  border: 2px solid rgba(114, 200, 253, 0.3);
}
.prevision > div {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.prevision > div:not(:last-of-type) {
  border-right: 2px solid rgba(114, 200, 253, 0.3);
}
.prevision > div > span {
  padding: 0.3rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: lighter;
  font-size: 0.7rem;
  font-family: Arial, Helvetica, sans-serif;
  border-bottom: 2px solid rgba(114, 200, 253, 0.3);
}
.prevision > div > p {
  padding: 0.7rem;
  font-size: 1.3rem;
  color: #fff;
}

.taskbar {
  background-color: #151a39;
  height: 1.3rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #fff;
  font-size: 0.8rem;
  padding: 0.1rem 0.5rem;
}
.screen-phone {
  background: #333;
  padding: 3rem 1rem 4rem;
  width: 23rem;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 3rem auto;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
}
.screen-phone::before {
  content: "";
  position: absolute;
  top: 15px;
  background: #ddd;
  height: 10px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 0.3rem;
}
.screen-phone::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: #ddd;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
