* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: white;
  font-family: Arial, sans-serif;
  background-color: #1C1B1B;
}
.container {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}
.left-panel {
  width: 50%;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.logo {
  /*width: auto;*/
  max-height: 25%;
  margin-left: 15%;
  margin-right: auto;
}
.text {
  font-size: 2em;
  line-height: 1.2;
  text-align: left;
  margin-left: 25%;
}
.right-panel {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iphone-image {
  width: 40%;
  height: auto;
  max-width: 500px;
}

.logo-mobile {
  width: 300px;
  height: auto;
}

@font-face {
  font-family: 'PowerGrotesk';
  src: url('PowerGrotesk-Regular.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

.text p {
  font-family: 'PowerGrotesk', Georgia;
  font-size: 42px;
  line-height: 70px;
}

footer {
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: black;
}

.footer-text {
  color: white;
  font-family: 'PowerGrotesk', Arial, sans-serif;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-family: 'PowerGrotesk', Arial, sans-serif;
}

.footer-link:hover {
  text-decoration: underline;
}


@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    min-height: 100vh;
    max-width: 100vw;

  }
  .left-panel, .right-panel {
    width: 100%;
    padding: 0px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .logo {
    max-width: 70%;
    max-height: 10%;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-left: auto;
    margin-right: auto;
  }
  .text {
    font-size: 1.5em;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }

  .iphone-image {
    width: 80%;
    max-width: none;
  }

  .text p {
    font-family: 'PowerGrotesk', Georgia;
    font-size: 30px;
    line-height: 30px;
  }
}