@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&display=swap');

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  width: 100%;
  background-color: #efefef;
  background-image: url(img/triangles.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  margin: 0;
}

.domine { font-family: 'Domine', serif; }
.roboto { font-family: 'Roboto', sans-serif; }
.font-weight-thin {font-weight: 100; }
.font-weight-bold { font-weight: 700; }

body { 
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered {
  display: flex;
  width: 1280px;
  justify-content: center;
  align-items: stretch;
}

.flex {
  display: flex;
}

h1 {
  font-size: 50px;
}

.btn {
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid #ff9001;
  color: #ff9001;
  display: inline-block;
  padding: 1rem 1rem;
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  text-align: center;
}

.btn-primary {
  color: #FFF;
  border: 1px solid #ff9001;
  background: #ff9001;
  margin-right: 1rem;
  font-family: 'Domine', serif;
  text-align: center;
}

.content {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.laptop {
  width: 65%;
}

.laptop img {
  width: 100%;
}

.logo {
  width: 300px;
}

@media all and (max-width: 1360px) {
  body {
    padding: 0 40px;
  }

  .centered {
    width: 100%;
  }
}

@media all and (max-width: 1180px) {
  .content, .laptop {
    width: 50%;
  }
}

@media all and (max-width: 1000px) {
  .laptop {
    display: none;
  }

  .content {
    width: 100%;
  }

  .flex-invert {
    flex-direction: column;
  }

  .btn-primary {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}