html {
  background-color: #fff;
}

h1 {
  font-size: 1.5rem;
}
h2 {
  font-size: 1.25rem;
}

.secondary {
  color: #555;
}

.b--secondary {
  border-color: #eee;
}

.device-border {
  box-shadow: 0px 0px 32px #ddd;
  border-style: solid; 
  border-radius: 39px; 
  border-width: 14px;
  border-bottom-style: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-width: 0;
  border-color: #fff;
  background-color: rgb(242,242,246);
}

.device1 {
  max-width: 225px;
  width: 225px;
  height: 289px;
}

.device2 {
  max-width: 225px;
  width: 225px;
  height: 271px;
}

@media screen and (min-width: 30em) {
  .device-border {
    box-shadow: 0px 0px 64px #ddd;
    border-style: solid; 
    border-radius: 52px; 
    border-width: 18px;
    border-bottom-style: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-width: 0;
    border-color: #fff;
    background-color: rgb(242,242,246);
  }

  .device1 {
    max-width: 300px;
    width: 300px;
    height: 385.83px;
  }

  .device2 {
    max-width: 300px;
    width: 300px;
    height: 361px;
  }
}

@media screen and (min-width: 60em) {
  .device1 {
    width: 300px;
    height: 456.38px;
  }

  .price {
    font-size: 1.75rem;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #000;
    color:  white;
  }
  a {
    color: white;
  }
  .device-border {
    border-color: #111;
    background-color: #000;
    box-shadow: none; 
  }
  .bg-near-white {
    background-color: #151515;
  }
  .b--secondary {
    border-color: #222;
  }
  .secondary {
    color: #aaa;
  }
}