/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: red;
  font-family: timesnewroman;
}

.applechoice {
 display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
   height: 80vh;
   /*height: 100vh; */
}

body {
  margin: 100px;
}

.responsive-img {
  max-width: 100%; /* Ensures the image doesn't exceed the width of its container/page */
  height: auto;    /* Automatically adjusts the height to maintain the aspect ratio */
  display: block;  /* Helps with centering and layout */
  margin: 0 auto;  /* Centers the image horizontally */
}

body, html {
    overflow: hidden; /* Hide both horizontal and vertical scrollbars */
    height: 100%;      /* Ensure the body and html take up the full screen height */
    margin: 0;         /* Remove default margins to prevent extra space */
}