@import "compass/css3";

html,
body {
  margin: 0px;
  padding: 0px;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

header {
  z-index: 1;
  position: fixed;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
}

header a {
  color: white;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 0px 30px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-family: "Roboto Slab", serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

#hero1 {
  background: url(./bioyumurta-kapak.jpeg);
  background-size: cover;
  background-position: center center;
  max-width: 100%;
    max-height: 100%;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    -o-object-fit: contain;
    object-fit: contain;
  
}

.hero,
.content {
  text-align: center;
  position: relative;
  width: 100%;
}

.inner {
  min-height: 1024px;
  position: relative;
}
.inner1 {
  min-height: 400px;
  position: relative;
}


/*
.hero .inner {
  background: rgba(0, 0, 0, 0.4)
    url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAD0lEQVQIW2NkQABjRmQOAAM+AGkQsDBSAAAAAElFTkSuQmCC);
  /*     repeat; */

/*}*/

.copy {
  position: absolute;
  top: 50%;
  height: 10em;
  margin-top: -12em;
  width: 100%;
}

.hero h1,
.hero p {
  color: #fff;
}

.content h1,
.content p {
  color: #333;
}

h1 {
  margin: 0px;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 32px;
  padding: 0px 20px;
}

p {
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  padding: 0px 20px;
}
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 70%;
  text-align: justify;
  -moz-text-align-last: center; /* Firefox 12+ */
  text-align-last: center;
  font-size: 15px;
  color: black;
  background-color: white;
  font-weight: bold;
}

.grid-wrapper {
  // Adding grid layout for screen size above 600
  @media screen and (min-width: 800px) {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 1rem;
  }

  @media screen and (min-width: 1025px) {
    grid-template-columns: 1fr 2fr 1fr 2fr;
  }
  @media screen and (min-width: 600px) and (max-width: 1024px) {
    grid-template-columns: 1fr 2fr;
  }
}