body {
    font-family: monospace;
    border-style: none;
    line-height: 1.5;
    font-size: 16px;
    width: 1362px;
/*    margin: 120px 0 120px 0;*/
    background-color: #111118;
    color: #ffffff;
/*
    margin:auto 0;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
*/
    /* max-width: 1120px; */
}

html, body {
      margin: 0;
}

iframe{
      position: absolute;
      height: 100%;
      width: 100%;
      border: none;
}

h1 {
  font-size: 40px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.4s;
    margin: 0 0 0 32px;
}

/* Navigation */

/*
.sticky {
    position: fixed;
    top: 0;
    width: 100%
}
*/

/*
.main-nav {
    display: flex;
    list-style: none;
    font-size: 0.7em;
    margin: 0;
}
*/

nav {
  font-size: 30px;
  font-weight: 500;

}

a:hover {
    color: blue;
}

.video-1 {
    margin: 20px 20px 20px 20px;
}

li {
    padding: 20px;
}




/*************/

.push {
    margin-left: auto;
    padding-right: 40px;
}

.zone {
/*
    padding:30px 50px;
    margin:40px 60px;
*/
    cursor:pointer;
/*    display:inline-block;*/
    color:#FFF;
    font-size:2em;
    border-radius:4px;
    border:1px solid #bbb;
    transition: all 0.3s linear;
}


/*COVER*/

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
}

.cover-img {
    max-width: 100%;
    height: auto;
}
/*vh view port height είναι η μονάδα που σου λέει πόσο % θα καλύπτει το view  αν βαλουμε 100 τοτε θα καλύπτει το 100& */

/*GRID*/

.grid-wrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.black {
    background: #111111; /* Old browsers */

}



section {
    margin: 40px 0 40px 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px 24px;
    grid-auto-flow: dense;
   /* background-color: aquamarine; */

}

section.tagline h1 {
  grid-column: 3 / span 8;
  text-align: left;
  margin: 70px 0 70px 0;
}

section.projects div.photo {
  grid-column: 3 / span 4;
  width: 100%;
  height: auto;
}

section.projects img {
max-width: 100%;
}

section.projects div.label {
  grid-column: 7 / span 4;
}

section.contact div {
  grid-column: 3 / span 8;
  text-align: left;
  margin: 70px 0 70px 0;
}


footer {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0 50px 0;
}

/* FORM  */

input, textarea {
  width: 100%;
  background-color: #111118;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 8px 16px 8px 16px;
  font-family: monospace;
}

label {
  display: block;
  margin: 20px 0 20px 0;
}

textarea {
  height: 340px;
}

button {
  background-color: blue;
  color: #ffffff;
  border: none;
  font-size: 24px;
  font-family: monospace;
  padding: 8px 16px 8px 16px;
}

//for accessibility reasons we can remove the outline. Althouth this blue is very intense.

input:focus, textarea:focus {
  border: 2px solid blue;
  outline: none;

}

button:hover {
  background-color: #FF5668;
  /* border: 2px solid blue; */
}



/* MEDIA QUERIES */

@media (max-width: 1490px) {

  body {
    width: 100%;
    /* height: auto; */
    margin: 80px 64px 80px 64px;

  }

  h1 {
    font-size: 32px;
  }


nav {
  /* font-size: 20px; */
  margin: 0 20px 0 20px;
}

}



@media (max-width: 920px) {
  header {
    flex-direction: column;
  }

  nav {
    margin: 30px 0 16px 0;
  }

  header img {
    max-width: 120px;
  }
  section {
    /* display: block; */
  }

}

@media (max-width: 620px) {
  section {
    grid-template-columns: repeat(4, 1fr);
    display: block;
    /* gap: 24px 24px */
  }

  section.tagline h1,
  section.projects div.photo,
  section.projects img,
  section.projects div.label
  section.contact div.form {
    grid-column: 1 / span 4;
  }
  img {
    width: 100%;
  }
}

/* @media screen and (max-width: 600px) {
    .main-nav {
        font-size: 0.5em;
        padding: 0;
    }
} */

@media (max-width: 500px) {

 }
