/* 
      _         _
     | |       | |
  ___| |_ _   _| | ___   ___ ___ ___
 / __| __| | | | |/ _ \ / __/ __/ __|
 \__ \ |_| |_| | |  __/| (__\__ \__ \
 |___/\__|\__, |_|\___(_)___|___/___/
           __/ |
          |___/

*/

/* -----------Fonts----------- */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap');
/* --------------------------- */

:root {
  --background: rgb(22, 24, 28);
  --foreground: rgb(38, 41, 47);
  --accent: #718f4d; 
  /*
  Teal: #2bbbd6 
  Purple: #aa7ee1
  */
}


* {
  color: white;
  font-family: "Segoe UI", Arial, sans-serif;
  box-sizing: border-box;
}

.dark1 {
  background-color: var(--background);
}

.imageText {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* ------Main Containers------ */
#parent {
  align-items: center;
  display: grid;
  height: 100%;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "leftChild rightChild";
  gap: 1.5rem;
  text-align: center;
  padding-bottom: 8vh;
}

.child {
  flex-shrink: 1;
  background-color: var(--foreground);
  border: 2px solid var(--accent);
  box-shadow: 0px 0px 3px 2px var(--accent);
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  max-width: 100%;
}
.child:hover {
  box-shadow: 0px 0px 4px 3px var(--accent);
  transform: scale(1.01, 1.01);
}

#leftChild {
  padding: 3%;
  min-width: 300px;
}

#rightChild {
  min-width: 300px;
}

.textBlock {
  text-align: left;
  padding: 4%;
}

@media only screen and (max-width: 700px) {
  #parent {
    grid-template-columns: 1fr;
    /* grid-template-rows: 1fr 1fr; */
    grid-template-areas:
      "leftChild"
      "rightChild";
  }
}

/* --------------------------- */

/* -------Element Types------- */
h1,h2,h3,h4,h5 {
  font-family: 'Comfortaa', cursive;
  text-shadow: 2px 2px var(--accent);
}


footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--background);
  color: white;
  text-align: center;
  height: 8vh;
}

hr {
  width: 90%;
  box-shadow: 0px 0px 7px 1px var(--accent);
}

ul {
  text-align: center;
  list-style-position: inside;
}
/* --------------------------- */

/* ------Link Formatting------ */
a {
  color: var(--accent);
}
a:visited {
  color: var(--accent);
  /* #6d00d3 */
}
a:hover {
  color: var(--accent);
  /* #2f56da */
}
a:active {
  color: #9CB84A;
  /* #4a4aff */
}
/* --------------------------- */

/* debugging stuff for positions */
.border {
  border: 2px solid red;
}