@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Redressed&display=swap');

:root {
  --white: white;
  --grey: #e9ecef;
  --darkgrey: #adb5bd;
  --blue: #284b63;
  --green: #3c6e71;
  --ff-heading: 'Kaushan Script', cursive;
  --ff-body: 'Poppins', sans-serif;
  --ff-footer: 'Dancing Script', cursive;
  --ff-header: 'Redressed, cursive;'
}

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

html, body {
  height: 100%;
}

html {
  position: relative;
}

body,
header,
h2,
.container,
footer {
  margin: 0;
  padding: 0;
}

body {
  background: var(--grey);
  font-family: var(--ff-body);
  font-weight: 400;
}

h2 {
  font-family: var(--ff-heading);
  color: var(--white);
  font-weight: 200;
}

header {
  background-color: var(--blue);
  text-align: center;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.hd-text {
  margin-right: auto;
  padding: 1rem;
}

.home {
  margin-left: auto;
  padding: 1rem;
}

.container {
  margin-bottom: 100px;
  padding: 1rem;
}


input[type=text],
select {
  width: 70%;
  height: 200px;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: var(--ff-body);
}

input[type=button],
select {
  width: 150px;
  height: auto;
  padding: 12px 20px;
  margin: 10px;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
  text-decoration: solid;
  color: black;
  font-size: 15px;
  font-family: var(--ff-header);
  background-color: var(--darkgrey);
}

.btn:hover {
  background-color: var(--blue);
  opacity: 1;
  color: white;
  font-family: var(--ff-heading);
}
.showcase {
  display: flex;
  align-items: center;
  margin-top: 3rem;
}

.input-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
}

footer {
  background-color: var(--blue);
  color: white;
  display: flex;
  align-content: center;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  clear: both;
  margin-top: auto;
}

.footer-text {
  margin-right: auto;
}

.footer-icons {
  margin-left: auto;
  align-items: center;
}

.footer-text h4 {
  font-family: var(--ff-header);
  font-weight: 200;
  padding: 1rem;
}

.footer-icons ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
}

.footer-icons ul li {
  list-style: none;
  margin: 0 10px;
}

.box-1 {
  height: auto;
}

.footer-icons ul li .fa {
  color: white;
  font-size: 20px;
  line-height: 15px;
  transition: 0.5s;
  cursor: pointer;
}

.footer-icons ul li .fa:hover {
  color: #fff;
}

@media screen and (max-width: 599px) {
  input[type=button],
  select {
    width: 100px;
    height: auto;
    padding: 12px 20px;
    margin: 10px;
    display: inline-block;
    border-radius: 4px;
    box-sizing: border-box;
    text-decoration: solid;
    color: black;
    font-size: 10px;
    font-family: var(--ff-header);
    background-color: var(--darkgrey);
  }

    input[type=text],
    select {
      width: 70%;
      height: 200px;
      padding: 12px 20px;
      margin: 8px 0;
      display: inline-block;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
      font-family: var(--ff-body);
      overflow: scroll;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 600px) {

    input[type=text],
    select {
    width: 70%;
    height: 300px;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: var(--ff-body);
  }

}