@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700");
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: #bdc3c7;
  font-family: "Lato", sans-serif;
  /* overflow: hidden; */
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"%3E%3Cpath fill="%239C92AC" fill-opacity="0.4" d="M1 3h1v1H1V3zm2-2h1v1H3V1z"%3E%3C/path%3E%3C/svg%3E');
  box-sizing: border-box;
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 90vh;
}

h1 {
  color: #4d13d1;
  font-size: 1.3rem;
}

.subcontainer {
  padding: 0.5rem 1rem;
  border-radius: 2px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
  background-color: #e8ecf1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box {
  text-align: center;
  margin: 1rem;
  text-align: center;
}

.input {
  background-color: rgba(255, 255, 255, 0.8);
  color: #232323;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: center;
}
.input:hover, .input:focus {
  background-color: white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  outline: 1px solid #4d13d1;
}

#equal {
  margin-top: 1rem;
  border: none;
  background-color: #4d13d1;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
  font-weight: 300;
  padding: 0.5rem 1.5rem;
  border-radius: 2px;
  transition: 0.2s;
}
#equal:hover {
  background-color: #662bec;
}
#equal:active {
  transform: scale(0.95);
}

.text {
  font-size: 1rem;
}
.text__cont {
  color: #4d13d1;
  letter-spacing: 1.5px;
}

.profile {
  color: #555;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.profile .fa-codepen {
  margin-right: 0.5rem;
}
.profile .author a:link,
.profile .author a:visited {
  color: inherit;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
}

.footer {
  height: 10vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #cdd1d6;
  background-color: #dee1e5;
  font-weight: 300;
  color: #555;
  position: relative;
}
.footer span {
  margin-left: 2px;
  font-weight: 400;
  cursor: pointer;
}
.footer span a:link,
.footer span a:visited {
  color: currentColor;
  text-decoration: none;
}


.article {
  padding: 1% 15%;
}