* {
  box-sizing: border-box; 
}

body {
  margin: 0; 
  font-weight: 500;
}

section {
  width: 100%;
  padding: 0 7%;
  display: table;
  margin: 0;
  max-width: none;
  background-image: url("./back.jpg");
  background-size:cover;
  height: 100vh;
  
  &:nth-of-type(2n) {
    background-color: #FE4B74;
  }
}

.intro {
  height: 100vh;
}

.content {
  display: table-cell;
  vertical-align: right;
}

h1 {
  font-size: 3em;
  display: block;
  color: white;
  font-weight: 300;
}

p {
  font-size: 1.5em;
  font-weight: 500;
  color: #C3CAD9;
}

a {
  font-weight: 700;
  position: relative;
  text-decoration:none;
  
  &:hover{ 
    opacity: 0.8;
  }
  
  &:active {
    top: 1px;
  }
  

}
