@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body {
    background-color: #f8feff;
}

img {width: 100%;}

header {
    position: fixed;
    display: inline-block;
    width: 100%;
    z-index: 5;
    margin: 0 auto;
    width: 1000px;
    height: 20px;
    border: 0px solid #F2C4C4;
    text-align: left;
}

header.header_separator {
    margin: 25px auto;
}

header span.header_name {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #2111EF;
    padding: 50px 20px;
    text-align: left;
}


h1.project_title {
  font-family: 'Work Sans', sans-serif;
  color: #F2A7A0;
  font-size: 5.5rem;
  font-weight: 700;
  text-align: left;
  line-height: 1;
}

.imgindex {
    display: block;
    position: relative
    max-width: 100%;
    height: auto;
}

.texthover {
    max-width: 100%;
    height: auto;
    opacity: 0;
    background:#f8feff;
}

.imgindex:hover .texthover{
    opacity:0.5;
    text-align: center;
    color: #2111EF;
    font-size: 2rem;
    font-weight: 400;
    font-family: "Work Sans", sans-serif;
    position: absolute;
    display: block;
    top: 0%;
    left: 10%;
    transform: translate(-0%,-10%);
}

h2 {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 2rem;
    color: #121888;
}

h2.headername {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #121888;
    text-align: center;
}

h2.sidebarname {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #121888;
    text-align: justify;
}

h3 {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #121888;
}

h1.hello{
  font-family: "Work Sans", sans-serif;
  color: #F2A7A0;
  font-size: 5rem;
  font-weight: 700;
  font-style: italic;
  text-align: center;
}

a{
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #121888;
    text-decoration: none;
    text-align: center;
}

a:hover {
    color:#F2A7A0;
    text-align: center;
}


h2.footer {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #F2A7A0;
    text-align: center;
    
}

/* and this will effect the paragraph 'p' elements */
p{
  font-size: 20px;
  color: #888888;
  /* we can also set the width of a box.*/
  max-width: 600px;
  /* and the margins on each side of the boc*/
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right:20px;
}

/* this is the class of the 'div' that all of the content sits in */

#container{
  max-width: 100%;
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 200px;
}

header span.header_name {
    font: "Arial";
}

td {
    width: 0;
    margin: 0 auto;
}

/* POSITIONING */
.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

/* ==== GRID SYSTEM ==== */

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .container {
    width: 80%;
  }
}

@media only screen and (min-width: 45em) {  /* 720px */
  p {
    font-size: 1rem;
  }

  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }

  .hidden-sm {
    display: block;
  }
}

@media only screen and (min-width: 60em) { /* 960px */
  p {
    font-size: 1.1rem;
  }

  .container {
    width: 80%;
    max-width: 60rem;
  }
}
