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

body {
  width: 100vw;
  height: 100vh;
  font-family: "Oswald", sans-serif;
  overflow-y: hidden;
}

h1 {
  font-size: 2rem;
  letter-spacing: 0.85px;
  word-spacing: 2px;
  font-weight: 900;
  color: rgb(255, 255, 255);
}

p {
  font-size: 1.4rem;
}

header {
  padding: 0.5em 1em;
  background-color: rgba(58, 104, 204, 0.8);
}
header nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 1rem;
}
header nav img {
  display: inline;
  height: 33px;
  width: 35px;
}

#container {
  display: flex;
  height: 100%;
}
#container #inputSection {
  width: 35%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  margin-right: 10px;
}
#container #inputSection .intro {
  padding: 0.5em 0;
  padding-left: 1.6em;
}
#container #inputSection .intro p {
  font-family: "Pacifico";
  line-height: 1.5;
  letter-spacing: 4px;
  color: rgb(247, 103, 51);
  font-size: 2.5rem;
}
#container #inputSection .input_div {
  margin: 2em 1.8em;
}
#container #inputSection .input_div input {
  padding: 3px 5px;
  width: 150px;
  outline: none;
  font-size: 1.2rem;
  display: block;
  border: none;
}
#container #inputSection .input_div button {
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  background-color: #ffffff;
  margin-top: 8px;
  padding: 0.5rem 1.2rem;
}
#container #inputSection .input_div button:last-of-type {
  margin-left: 6px;
}
#container #inputSection .input_div button:last-of-type:hover {
  background-color: #f11811;
}
#container #inputSection .input_div button:hover {
  color: #ffffff;
  background-color: #56a4e4;
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
#container #stackSection {
  flex: 1;
  width: 65%;
}
#container #stackSection h3 {
  text-align: center;
  letter-spacing: 0.8px;
  font-size: 2rem;
  margin-top: 8px;
}
#container #stackSection #top_pointer {
  font-size: 1.3rem;
}
#container #stackSection #stack_cont .node_cont {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}
#container #stackSection #stack_cont .node_cont p {
  display: inline;
  font-size: 1rem;
}
#container #stackSection #stack_cont .node_cont .node {
  font-family: Arial, sans-serif;
  background-color: #56a4e4;
  color: rgb(255, 255, 255);
  font-size: 1.1rem;
  padding: 1em;
  text-align: center;
  margin: 10px 0px;
  display: inline;
  border: 1px solid black;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.8);
}

.alert {
  padding: 2px 0;
  font-size: 1.15rem;
  display: none;
  background-color: rgba(255, 0, 0, 0.3);
}
.alert p {
  color: rgba(255, 0, 0, 0.9);
  width: 92%;
  text-align: center;
}
.alert button {
  border: none;
  padding: 5px;
  cursor: pointer;
  background-color: transparent;
}
.alert button:hover {
  transform: scale(0.85);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}/*# sourceMappingURL=styles.css.map */