@font-face {
    font-family: "Ubuntu";
    src: url(../fonts/Ubuntu/UbuntuTitling-Bold.ttf);
  }
  
  @font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf);
  }

  @font-face {
    font-family: "MontserratBold";
    src: url(../fonts/Montserrat/Montserrat-Bold.ttf);
  }

  @font-face {
    font-family: "Themify";
    src: url(../fonts/Themify/themify.ttf);
  }

  @font-face {
    font-family: "Quicksand";
    src: url(../fonts/Quicksand/Quicksand-VariableFont_wght.ttf);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
  }
  
  html {
    font-size: 62.5%;
  }
  
  body {
    font-family: "Themify";
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .container {
    width: 37.6rem;
    height: 100vh;
    background-color: #0B5294;
    color: #f0f0f0;
  }
  
  .logo {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    font-family: 'Ubuntu';
    font-size: 5rem;
    font-weight: 600;
  }
  
  .logo img {
    width: 4.8rem;
    height: 4.8rem;
    margin-right: 1.5rem;
  }

  .brand {
    color: #fff;
  }

  i {
    color: rgb(255, 131, 9);
    font-weight: bold;
    font-style: normal;
  }

  a {
    text-decoration: none;
  }
  
  .content {
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }
  
  header {
    width: 50%;
  }
  
  h2 {
    text-align: center;
    color: #cd3a24;
    text-transform: uppercase;
    font-size: 4rem;
    font-weight: 400;
  }
  
  h1 {
    text-align: center;
    color: #423a3a;
    text-transform: uppercase;
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 0.5rem;
    font-family: "MontserratBold";
  }
  
  p {
    width: 80%;
    font-size: 1.3rem;
    line-height: 2.8rem;
    text-align: center;
    color: #333333;
  }
  
  .cta {
    display: flex;
  }
  
  input[type="email"] {
    height: 4.8rem;
    width: 24.7rem;
    border: 1px solid #000;
    padding: 0 1rem;
  }
  
  button {
    background-color: #0f0f0f;
    color: #fff;
    height: 4.8rem;
    width: 6.4rem;
    border: none;
  }
  
  /* Medium devices (landscape tablets, 768px and up) */
  @media only screen and (min-width: 768px) {
    .photo {
      display: none;
    }
  
    .container {
      width: 100%;
      height: 100vh;
      display: flex;
    }
  
    .left {
      flex: 1;
    }
  
    .logo {
      margin: 4rem 4rem 10rem;
      display: flex;
      justify-content: left;
    }
  
    header {
      width: 100%;
    }
  
    h2,
    h1 {
      text-align: left;
      margin: 0 4rem;
      color: #fdb347;
    }
  
    h1 {
      font-size: 5rem;
      margin-bottom: 4rem;
    }
  
    p {
      text-align: left;
      font-size: 1.8rem;
      line-height: 3.6rem;
      color: #f0f0f0;
    }
  
    .cta {
      margin-top: 4rem;
    }
  
    .right {
      height: 100vh;
      width: 74rem;
      background-image: url("https://images.juniorbay.net/misc/model.png");
      background-position: center;
      background-size: cover;
      flex: 1;
      clip-path: polygon(0 0, 99% 1%, 100% 100%, 33% 100%);
    }
  }
  