* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  color: white;
  list-style: none;
  text-decoration: none;
}



body {
  height: 100%;
  background: linear-gradient(345deg, rgba(16,16,16,1) 49%, rgba(14,29,58,1) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.greenBg {
  min-height: 100%;
  background: linear-gradient(345deg, rgb(16, 16, 16) 70%, #0f3a0e 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  max-width: 1280px;
  margin: 0 auto;

  @media (max-width: 1280px) {
    width: 90%;
  }
}

.mainButton {
  padding: 12px 20px;
  background-color: transparent;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid #E71900;
  border-radius: 4px;
  margin-right: 16px;
  cursor: pointer;
  transition: 1.2s;
  text-decoration: none;

  &:hover {
    background-color: #E71900;
    box-shadow: 0px 10px 60px -15px  rgba(255,68,51,1);
  }
}

.subSections {
  padding: 80px 0px;
  
  h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 30px 0px;
    margin-bottom: 20px;
  }

  @media (max-width: 480px) {
    padding:20px 0px;
  }
}