:root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 14px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --bg: black;
    --bgOverlay: rgba(0, 0, 0, 0.5);
    --fontColour: rgba(255, 255, 255, 1);
}

body {
    background-color: var(--bg);
    color: var(--fontColour);
    background-image: url(../assets/grid-bg.svg);
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: fit-content;
    margin: 0;
}

.logoDiv img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    margin-right: 25px;
    /* background-image: url(../assets/salaryseeker_logo.svg); */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 8px 0;
}

p {
    margin: 0;
}

.headerTitle {
    font-size: 80px;
    font-weight: 600;
    line-height: 1.2;
    margin: 50px 0 10px 0;
    margin-top: 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: var(--bgOverlay);
    color: var(--fontColour);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; -- this is vertically centre*/
    text-align: center;
    height: 82%;
    padding: 0 20px;
    background-color: var(--bgOverlay);
    color: var(--fontColour);
}
 

.welcomeText {
    color: var(--fontColour);
    font-size: 1.5em;
    font-weight: 300;
    margin: 0;
}


.searchContainer {
    display: flex;
    flex-direction: column;
    /* align-items: center;` */
    /* justify-content: center; */
    text-align: center;
    /* height: 100vh; */
    padding: 0 20px;
    background-color: var(--bgOverlay);
    color: var(--fontColour);
    margin-top: 60px;
    min-width: 600px;
}

.searchBox {
    font-size: 16px;
    flex: 1;
    margin: 20px 0;
    padding: 10px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--fontColour);
}

.searchButton {
    align-self: flex-end;
    font-size: 16px;
    font-weight: 900;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
}

.searchButton:hover {
    align-self: flex-end;
    font-size: 16px;
    font-weight: 900;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
}

.searchButton:onclick {
    align-self: flex-end;
    font-size: 16px;
    font-weight: 900;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;
    background-color: black;
    color: rgba(255, 255, 255, 0.5);
}


.filler {
    flex: 1;
}

#results {
    margin-top: 60px;
    font-size: 30px;
    font-weight: bold;
    max-width: 600px;
}

#results b {
    color: #00ff70;
    font-size: 40px;
}

#results p {
    color: rgb(0, 140, 255);
    font-size: 30px;
}

#emoji {
    margin-top: 20px;
    font-size: 100px;
}

/* For mobile design */

/* @media screen and (max-width: 900px) {

  body {
    background-color: var(--bg);
    color: var(--fontColour);
    background-image: url(../assets/grid-bg.svg);
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: fit-content;
    margin: 0;
  }

  .logoDiv img {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 100px;
      margin-right: 25px;
  }
  .content {
      height: 100%;
      padding: 0 20px;
      background-color: var(--bgOverlay);     
      color: var(--fontColour);
  }

  .search {
    min-width: 100%;
  }

  .searchBox {
    min-height: 40px;
  }

  .searchContainer {
    display: block;
    flex-direction: column;
    text-align: center;
    padding: 0;
    background-color: var(--bgOverlay);
    color: var(--fontColour);
    margin-top: 60px;
    min-width: 600px;
  }


  .searchBox {
      font-size: 16px;
      flex: 1;
      margin: 20px 0;
      padding: 10px;
      border: 1px solid rgb(255, 255, 255);
      border-radius: 10px;
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--fontColour);
  }

  .searchButton {
      align-self: flex-end;
      font-size: 16px;
      font-weight: 900;
      margin-top: 20px;
      padding: 10px;
      border: 1px solid rgb(0, 0, 0);
      border-radius: 10px;
      background-color: rgba(255, 255, 255, 0.9);
      color: black;
  }

  .searchButton:hover {
      align-self: flex-end;
      font-size: 16px;
      font-weight: 900;
      margin-top: 20px;
      padding: 10px;
      border: 1px solid rgb(255, 255, 255);
      border-radius: 10px;
      background-color: rgba(255, 255, 255, 0.5);
      color: black;
  }

  .searchButton:onclick {
      align-self: flex-end;
      font-size: 16px;
      font-weight: 900;
      margin-top: 20px;
      padding: 10px;
      border: 1px solid rgb(255, 255, 255);
      border-radius: 10px;
      background-color: black;
      color: rgba(255, 255, 255, 0.5);
  }

} */



/* this is for the loading animations */
@keyframes ldio-tw57sj0eio {
  0% { transform: rotate(0) }
  100% { transform: rotate(360deg) }
}
.ldio-tw57sj0eio div { box-sizing: border-box!important }
.ldio-tw57sj0eio > div {
  position: absolute;
  width: 159.04000000000002px;
  height: 159.04000000000002px;
  top: 32.480000000000004px;
  left: 32.480000000000004px;
  border-radius: 50%;
  border: 11.200000000000001px solid #000;
  border-color: #2e49ff transparent #2e49ff transparent;
  animation: ldio-tw57sj0eio 2.8571428571428568s linear infinite;
}

.ldio-tw57sj0eio > div:nth-child(2), .ldio-tw57sj0eio > div:nth-child(4) {
  width: 132.16000000000003px;
  height: 132.16000000000003px;
  top: 45.92px;
  left: 45.92px;
  animation: ldio-tw57sj0eio 2.8571428571428568s linear infinite reverse;
}
.ldio-tw57sj0eio > div:nth-child(2) {
  border-color: transparent #2bde73 transparent #2bde73
}
.ldio-tw57sj0eio > div:nth-child(3) { border-color: transparent }
.ldio-tw57sj0eio > div:nth-child(3) div {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
}
.ldio-tw57sj0eio > div:nth-child(3) div:before, .ldio-tw57sj0eio > div:nth-child(3) div:after { 
  content: "";
  display: block;
  position: absolute;
  width: 11.200000000000001px;
  height: 11.200000000000001px;
  top: -11.200000000000001px;
  left: 62.720000000000006px;
  background: #2e49ff;
  border-radius: 50%;
  box-shadow: 0 147.84px 0 0 #2e49ff;
}
.ldio-tw57sj0eio > div:nth-child(3) div:after {
  left: -11.200000000000001px;
  top: 62.720000000000006px;
  box-shadow: 147.84px 0 0 0 #2e49ff;
}

.ldio-tw57sj0eio > div:nth-child(4) { border-color: transparent; }
.ldio-tw57sj0eio > div:nth-child(4) div {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
}
.ldio-tw57sj0eio > div:nth-child(4) div:before, .ldio-tw57sj0eio > div:nth-child(4) div:after {
  content: "";
  display: block;
  position: absolute;
  width: 11.200000000000001px;
  height: 11.200000000000001px;
  top: -11.200000000000001px;
  left: 49.28px;
  background: #2bde73;
  border-radius: 50%;
  box-shadow: 0 120.96000000000001px 0 0 #2bde73;
}
.ldio-tw57sj0eio > div:nth-child(4) div:after {
  left: -11.200000000000001px;
  top: 49.28px;
  box-shadow: 120.96000000000001px 0 0 0 #2bde73;
}
.loadingio-spinner-double-ring-s59ag2l499 {
  width: 224px;
  height: 224px;
  display: inline-block;
  overflow: hidden;
  background: #f1f2f300;
}
.ldio-tw57sj0eio {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}
.ldio-tw57sj0eio div { box-sizing: content-box; }
/* generated by https://loading.io/ */
