@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,700&display=swap");
/* Theme Colors */
:root {
  --navy-blue: #03045e;
  --dark-cornflower-blue: #023e8a;
  --star-command-blue: #0077b6;
  --blue-green: #0096c7;
  --cerulean-crayola: #00b4d8;
  --blue-crayola: #48cae4;
  --sky-blue-crayola: #90e0ef;
  --bizzard-blue: #ade8f4;
  --powder-blue: #caf0f8;

  /* CSS HEX */
  --imperial-red: #e63946ff;
  --honeydew: #f1faeeff;
  --powder-blue: #a8dadcff;
  --celadon-blue: #457b9dff;
  --prussian-blue: #1d3557ff;
  --teal-blue: #0cb67d;
}
/* CSS HSL 
--imperial-red: hsla(355, 78%, 56%, 1);
--honeydew: hsla(105, 55%, 96%, 1);
--powder-blue: hsla(182, 43%, 76%, 1);
--celadon-blue: hsla(203, 39%, 44%, 1);
--prussian-blue: hsla(215, 50%, 23%, 1);

/* SCSS HEX 
$imperial-red: #e63946ff;
$honeydew: #f1faeeff;
$powder-blue: #a8dadcff;
$celadon-blue: #457b9dff;
$prussian-blue: #1d3557ff;

/* SCSS HSL 
$imperial-red: hsla(355, 78%, 56%, 1);
$honeydew: hsla(105, 55%, 96%, 1);
$powder-blue: hsla(182, 43%, 76%, 1);
$celadon-blue: hsla(203, 39%, 44%, 1);
$prussian-blue: hsla(215, 50%, 23%, 1);

/* SCSS RGB 
$imperial-red: rgba(230, 57, 70, 1);
$honeydew: rgba(241, 250, 238, 1);
$powder-blue: rgba(168, 218, 220, 1);
$celadon-blue: rgba(69, 123, 157, 1);
$prussian-blue: rgba(29, 53, 87, 1);

/* SCSS Gradient 
$gradient-top: linear-gradient(0deg, #e63946ff, #f1faeeff, #a8dadcff, #457b9dff, #1d3557ff);
$gradient-right: linear-gradient(90deg, #e63946ff, #f1faeeff, #a8dadcff, #457b9dff, #1d3557ff);
$gradient-bottom: linear-gradient(180deg, #e63946ff, #f1faeeff, #a8dadcff, #457b9dff, #1d3557ff);
$gradient-left: linear-gradient(270deg, #e63946ff, #f1faeeff, #a8dadcff, #457b9dff, #1d3557ff);
$gradient-top-right: linear-gradient(45deg, #e63946ff, #f1faeeff, #a8dadcff, #457b9dff, #1d3557ff);
$gradient-bottom-right: linear-gradient(135deg, #e63946ff, #f1faeeff, #a8dadcff, #457b9dff, #1d3557ff);
$gradient-top-left: linear-gradient(225deg, #e63946ff, #f1faeeff, #a8dadcff, #457b9dff, #1d3557ff);
$gradient-bottom-left: linear-gradient(315deg, #e63946ff, #f1faeeff, #a8dadcff, #457b9dff, #1d3557ff);
$gradient-radial: radial-gradient(#e63946ff, #f1faeeff, #a8dadcff, #457b9dff, #1d3557ff);
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--honeydew);
}
.topnav {
  width: 100%;
  background-color: var(--honeydew);
  height: 60px;
  position: fixed;
  top: 0;
  z-index: 1;
  overflow: hidden;
}

.search-container {
  position: absolute;
  left: 20%;
  width: 75%;
  margin: 0 auto;
}
.search-container input[type="text"] {
  position: relative;
  float: left;
  padding: 15px;
  width: 90%;
  margin-top: 10px;
  font-size: 18px;
  outline: none;
  border: none;
  background-color: #ececec;
  color: var(--honeydew);
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}
.search-container input[type="text"]:focus {
  font-size: 18px;
  outline: none;
  border: none;
  background-color: #dddddd;
  color: var(--teal-blue);
}
.search-container button {
  position: relative;
  float: left;
  width: 10%;
  padding: 15px 18px;
  margin-top: 10px;
  color: var(--honeydew);
  font-size: 16px;
  border: none;
  cursor: pointer;
  background-color: var(--teal-blue);
}

.search-container button:hover {
  color: var(--honeydew);
  font-size: 16px;
  background-image: linear-gradient(to left, #32be8f, #38d39f, #32be8f);
  background-size: 200%;
}

@media screen and (max-width: 600px) {
  .topnav .search-container {
    float: none;
  }
  .topnav a,
  .topnav input[type="text"],
  .topnav .search-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type="text"] {
    border: 1px solid #ccc;
  }
}

.container {
  margin-top: 80px;
}
.card-container {
  /*background-color: var(--celadon-blue);*/
  background: #242e42;
  width: 80%;
  font-family: "Lato", sans-serif;
  margin: 20px auto 30px auto;
  display: flex;
  position: relative;
  float: right;
  right: 3%;
  animation-name: MoveToBottom;
  animation-duration: 0.4s;
  backface-visibility: hidden;
}
.user-data {
  width: 80%;
  flex: 1;
}
.card-header {
  width: 100%;
  height: 50px;
  clear: both;
  text-align: center;
  margin: 8px 0 0 0;

  animation-name: MoveToBottom;
  animation-duration: 0.6s;
  backface-visibility: hidden;
}
.card-header-text {
  font-weight: 700;
  font-size: 16px;
  display: block;
  float: left;
  margin-left: 5%;
  margin-top: 10px;
  color: var(--honeydew);
}
.info-card {
  display: flex;
}
.status {
  float: right;
  margin-right: 25%;
  font-size: 18px;
  text-transform: uppercase;
}
.personal-info {
  background-color: var(--honeydew);
  width: 60%;
  float: left;
  padding: 10px;
  margin: 0 2% 0 2%;
  font-size: 15px;
  text-transform: uppercase;
  color: #242e42;

  animation-name: MoveToBottom;
  animation-duration: 0.8s;
  backface-visibility: hidden;
}
.personal-info-header {
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
  color: #4a4e69;
}
.photo-section {
  width: 30%;
  margin-left: 2%;
  float: left;
}
.photo-section img {
  height: 120px;
  width: 120px;
  margin-left: 50%;
  margin-top: 15px;
  margin-bottom: 15px;
  transform: translate(-50%);
}
.photo-section p {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  text-transform: capitalize;
  line-height: 26px;
}
.personal-info-section {
  width: 64%;
  display: block;
  float: left;
  margin-left: 10px;
  line-height: 24px;
  padding: 4%;
}
.important-text {
  font-size: 22px;
  color: #007f5f;
  font-weight: 700;
  line-height: 30px;
}
.bold {
  font-weight: 700;
}
.lowercase {
  text-transform: lowercase;
}
.work-info {
  background-color: var(--honeydew);
  width: 40%;
  float: left;
  padding: 10px;
  margin-right: 2%;
  font-size: 15px;
  color: #4a4e69;

  animation-name: MoveToBottom;
  animation-duration: 0.8s;
  backface-visibility: hidden;
}
.work-info-header {
  text-transform: uppercase;
  font-style: italic;
  color: #4a4e69;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}
.work-info-section {
  width: 100%;
  display: block;
  float: left;
  line-height: 28px;
  padding: 4%;
}
.card-footer {
  width: 100%;
  height: 50px;
  clear: both;

  animation-name: MoveToBottom;
  animation-duration: 0.6s;
  backface-visibility: hidden;
}
.card-footer-text {
  font-weight: 700;
  float: left;
  margin-left: 7%;
  margin-top: 10px;
  color: var(--honeydew);
}
.note-area {
  float: right;
  height: 100%;
  text-align: center;
  width: 20%;
  color: honeydew;
  margin-right: 1.5%;
  margin-top: 60px;

  animation-name: MoveToBottom;
  animation-duration: 0.8s;
  backface-visibility: hidden;
}
textarea {
  width: 100%;
  resize: unset;
  text-align: center;
  color: #4a4e69;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  background-color: var(--honeydew);
}
textarea:hover {
  transition: 0.2s ease-in;
}
.button-area {
  width: 100%;
  position: relative;
}
.action-button {
  width: 100%;
  text-decoration: none;
  background-color: var(--imperial-red);
  color: var(--honeydew);
  padding: 10px 15px;
  float: right;
  position: relative;
  margin: 8px auto;
}
@keyframes MoveToBottom {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
