@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap");
*,
*::before,
*::after,
*::placeholder {
  color: #eee;
  letter-spacing: 1.5px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}

body,
h2 {
  margin: 0;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: #252525;
}
body section {
  height: 100vh;
}
body section h2 {
  margin: 20px 0;
  text-align: center;
  font-size: 3.5rem;
}
body section p:last-of-type {
  margin: 10px 0 100px 0;
}

.container {
  width: 1100px;
  margin: auto;
}
@media only screen and (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

.row {
  display: flex;
}

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

textarea {
  min-height: 120px;
  max-height: 250px;
  resize: vertical;
}

input,
textarea {
  background-color: transparent;
  border: none;
  outline: none;
}
input[type=submit],
textarea[type=submit] {
  border-radius: 5px;
  background-color: #bc6ff1;
}
input:hover, input:focus,
textarea:hover,
textarea:focus {
  box-shadow: 4px 4px 4px #bc6ff1;
}

.list,
input,
textarea {
  width: 300px;
  border: solid 2px #bc6ff1;
  cursor: pointer;
}

.list,
input {
  transition: 0.2s;
}

input,
textarea {
  padding: 10px 15px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#task1 .row {
  align-items: center;
}

#task2 .row,
#task4 .row {
  align-items: flex-start;
}

#task1 .row,
#task2 .row,
#task4 .row {
  margin: 10px 0;
  justify-content: space-between;
}
#task1 .row input[type=text],
#task1 .row textarea,
#task2 .row input[type=text],
#task2 .row textarea,
#task4 .row input[type=text],
#task4 .row textarea {
  width: calc(100% - 300px - 10px);
}

#toast {
  min-width: 250px;
  max-width: 650px;
  padding: 20px;
  border-radius: 5px;
  position: fixed;
  right: 3rem;
  bottom: 2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 100;
}
#toast.show {
  visibility: visible;
  opacity: 1;
}
#toast.error {
  color: #eee;
  background-image: linear-gradient(-35deg, rgb(177, 17, 17) 0, rgb(248, 72, 72) 100%);
}
#toast.success {
  color: #eee;
  background-image: linear-gradient(-35deg, rgb(0, 123, 43) 0, rgb(26, 162, 49) 100%);
}

::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #eee;
}
::-webkit-scrollbar-thumb {
  border-radius: 0.2rem;
}

::-webkit-scrollbar-button:vertical:start:decrement {
  background: linear-gradient(120deg, #eee 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(240deg, #eee 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(0deg, #eee 30%, rgba(0, 0, 0, 0) 31%);
}

::-webkit-scrollbar-button:vertical:end:increment {
  background: linear-gradient(300deg, #eee 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(60deg, #eee 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(180deg, #eee 30%, rgba(0, 0, 0, 0) 31%);
}

::-webkit-scrollbar-button:horizontal:start:decrement {
  background: linear-gradient(30deg, #eee 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(150deg, #eee 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(270deg, #eee 30%, rgba(0, 0, 0, 0) 31%);
}

::-webkit-scrollbar-button:horizontal:end:increment {
  background: linear-gradient(210deg, #eee 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(330deg, #eee 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(90deg, #eee 30%, rgba(0, 0, 0, 0) 31%);
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-button:vertical:end:increment,
::-webkit-scrollbar-button:vertical:start:decrement,
::-webkit-scrollbar-button:horizontal:start:decrement,
::-webkit-scrollbar-button:horizontal:end:increment {
  background-color: grey;
}
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-button:vertical:end:increment:hover,
::-webkit-scrollbar-button:vertical:start:decrement:hover,
::-webkit-scrollbar-button:horizontal:start:decrement:hover,
::-webkit-scrollbar-button:horizontal:end:increment:hover {
  background-color: #bc6ff1;
}

/*# sourceMappingURL=style.css.map */
