/* html, body {
  overflow-y: scroll;
  margin-right: 0;
  padding-right: 0;
  
} */

/* html {
  scrollbar-gutter:;
} */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent; 
  
  
  
}

::-webkit-scrollbar-thumb {
  background: #b579a3; 
  border-radius: 10px;
  
  
}

::-webkit-scrollbar-thumb:hover {
  background: #f981b4; 
}


/* Nav Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #a3c0a9;
  padding: 10px 20px;
  position: sticky; /* stays on top when scrolling */
  top: 0;
  z-index: 1000; /* ensures it stays above content */
  flex-wrap: wrap; /* move items to next line when needed */
}

/* picture and name section */
.left-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-pic {
  position: relative;
  width: fit-content;
  margin-left: 10px;
}

.nav-pic img {
  height: 100px;
  width: auto;
  border: #b579a3 solid 4px;
  border-radius: 5px; /* circle */
  /* margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px; */
  display: block;
}

.normal-pic {
  position: relative;
}

.smile-pic {
  position: absolute;
  top:0;
  left: 0;

  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-pic:hover .smile-pic {
  opacity: 1;
  transform: scale(1);
  
}





.nav-name {
  color: #b579a3;
  font-family: "Lily Script One", sans-serif;
  font-size: 60px;
  font-weight: bold;
  margin-left: 15px;
  margin-right: 50px;
  letter-spacing: 4px;
  position: relative;
  z-index: 2;
}

.nav-name a {
  color: #b579a3;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav-name a:hover {
  color: #f981b4;
}

/* internal links */
.internal-links ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-right: 80px;
  padding: 0;
  flex-wrap: wrap;
  margin: 0;
  gap: 10px;
}

.internal-links a {
  color: #b579a3;
  font-family: "Lily Script One", sans-serif;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  transition: color 0.3s;
  margin-right: 20px;
}

.internal-links a:hover {
  color: #f981b4;
}

.internal-links a.active,
.nav-name a.active {
  color: #f981b4;
  border-bottom: 3px solid #f981b4;
}

html,
body {
  scroll-behavior: smooth; /* optional smooth scroll */
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden; /* prevent horizontal scroll */
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* take up available space */
}

section {
  padding: 80px 40px;
  /* min-height: 400px; */
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  background-color: #b579a3;
}

section h2 {
  color: #b579a3;
  font-weight: bold;
  font-size: 32px;
}

section h3 {
  color: #b579a3;
  font-weight: bold;
  font-size: 22px;
}

/* home page - tiana */
#home {
  padding: 80px 40px;
  min-height: 200px;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-top: 40px;
  background-color: #fcf9f5;
}

/* Background Image of house */
.house {
  /* background-image: url("/images/theatre-edited-public-domain-vectorsunsplash.jpg"); */
  background-image: url("Images/harisankar-sahoo-tVnqd8wmm98-unsplash\ -\ Copy.png");
  position: relative;
  /* background-size:cover; */
  background-position: center;
  width: 100%;

  background-size: contain; /* keeps original dimensions */
  background-repeat: no-repeat; /* don’t tile it */
  background-position: center; /* center it */

  min-height: 80vh;

  display: flex;
  justify-content: flex-start; /* left side */
  align-items: flex-end; /* bottom */
  padding: 20px;
  background-color: #e6ddf0;
}

.objects {
  display: flex;
  align-items: flex-end; /* keeps items same level */
  gap: 40px;
  position: relative;
}

.computer-container {
  position: absolute;
  bottom: 1px; /* distance from bottom of page */
  left: 180px; /* distance form left edge */
  /* width: 25%; scales with screen size */
  width: 380px;
  height: auto;
}

.computer {
  width: 100%;
  height: auto;
  display: block;
  /* min-width: 200px; */
  /* position:relative; */
}
.computer:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}

/* items Area Overlay */
.screen {
  position: absolute;
  top: 23%; /* adjust vertical placement */
  left: 28%; /* adjust horizontal placement */
  width: 20%; /* scale relative to computer */
  height: 20%;
  background-color: rgba(255, 255, 255, 0.85);
  color: #000;
  border-radius: 10px;
  /* screen-glow */
  box-shadow: 0 0 40px rgba(255, 250, 200, 0.7),
    0 0 80px rgba(255, 255, 220, 0.5);
  background-image: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.8),
    rgba(240, 240, 240, 0.6)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transform: rotate(-5deg);
}

.screen a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  color: #b579a3;
  font-size: 20px;
  text-decoration: none;
}

.screen a:hover {
  color: #f981b4;
  transform: scale(1.1);
  filter: brightness(1.2);
}

.phone-container {
  position: absolute;
  bottom: 0; /* distance from bottom of page */
  left: 98%; /* distance form left edge */
  width: 120px;
  height: auto;
}
.phone-img {
  width: 150%; /* phone size */
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.phone-img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.phone-overlay {
  position: absolute;
  top: 55%;
  left: 75%;
  transform: translate(-50%, -50%); /* center overlay over phone */
  width: 60px;
  height: 0px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #b579a3;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  /* 
    box-shadow: 0 0 30px rgba(255, 250, 200, 0.7),
                0 0 60px rgba(255, 255, 220, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease; */
}
.phone-overlay:hover {
  filter: brightness(1.2);
  color: #f981b4;
}

/* book container */
.book-container {
  position: absolute;
  bottom: 1px;
  left: 580px; /* adjust to the right of the phone */
  width: 220px;
  height: auto;
}

.book-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.book-img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* overlay for book */
.book-overlay {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-28deg);
  width: 50px;
  height: 50px;

  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #b579a3;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  /* screen glow */
  box-shadow: 0 0 30px rgba(255, 250, 200, 0.7),
    0 0 60px rgba(255, 255, 220, 0.5);
}

.book-overlay:hover {
  filter: brightness(1.2);
  color: #f981b4;
}

#lower-section {
  background-color: #b579a3;
  width: 100%;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-top: solid 12px #92925f; */
}

#picture-links {
  min-height: 200px;
}

/* about page */
#about {
  padding: 80px 40px;
  min-height: 200px;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-top: 40px;
  background-color: #fcf9f5;
  text-align: center;
}

.about-cards {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap; /*stacks on smaller screens*/
  margin-bottom: 50px;

  max-width: 1400px;   
  margin: 0 auto;   
  margin-bottom: 30px;
}
.about-card {
  background-color: #fcf9f5;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  width: 350px;
  text-align: center;
  flex-shrink: 0;
}
.profile-pic {
  width: 320px;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 10px;
}
.about-card h3 {
  margin-bottom: 40px;
  font-size: 24px;
  color: #b579a3;
}
.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-card ul li {
  background-color: #d3b2c9;
  margin: 6px 0;
  padding: 8px;
  margin-bottom: 30px;
  border-radius: 6px;
  font-size: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
}

#gr_quote_body,
#gr_quote_body * {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-style: italic !important;
  color: #382110 !important;
}


#credits {
  padding: 30px 30px 100px 30px;

  min-height: 200px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #e6ddf0;
  font-size: 14px;
  text-align: center;
}

.duoembed {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 40px;
  font-family: "Zen Maru Gothic", sans-serif !important;
  color:#b579a3;

}
.duoembed img {
  max-width: 100%;
  width: 400px;
  display: block;
  height: auto;
  justify-content: center;
  margin: 40px auto 0;
  margin-top: 10px;
}

/* youtube link */
/* card container */
#youtube-link-card {
  max-width: 580px;
  margin: 60px auto;
  text-align: center;
  font-family:  "Zen Maru Gothic", sans-serif;
  padding: 10px !important;
  border-radius: 8px;
  background-color: #d3b2c9;
  
}

/* clickable image link */
#youtube-link {
  display: block;            
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  
}

/* the image itself */
#youtube-link img {
  width: 100%;
  height: auto;              
  display: block;
  object-fit: cover;
}

/* hover effect */
#youtube-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* description text */
#youtube-description {
  margin-top: 18px;
  font-size: 18px;;
  color: #333;
}




/* resume page */
#resume {
  padding: 80px 40px;
  min-height: 400px;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-top: 40px;
  background-color: #fcf9f5;
  text-align: center;
}
#resume h3 {
margin-top: 60px;
}

/* projects page */
#projects {
  padding: 50px 40px;
  min-height: 100px;
  margin-top: 20px;
  margin-bottom: 0px;
  padding-top: 40px;
  background-color: #fcf9f5;
  text-align: center;


}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  
}

.projects-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 580px;
  margin: 0 auto;
  margin-top: 40px;
  
}

.projects-card img {
  width: 100%;
  height: 80%;
  display: block;
  
  
}

.projects-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.projects-card h3 {
  padding: 0px;
  padding-bottom: 0;
  text-align: center;
}

#websites {
  padding: 0px 40px;
  padding-bottom: 40px;
  min-height: 100px;
  margin-top: 20px;
  margin-bottom: 30px;
  
  background-color: #fcf9f5;
}

.website-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
 
}

.website-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 580px;
  margin: 0 auto;
  margin-top: 40px;
}

.website-card img {
  width: 100%;
  display: block;
}

.website-card h3 {
  padding: 10px;
  text-align: center;
}

.website-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* .projects-card img,
    .website-card img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover; */


/* Footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a3c0a9;
  padding: 10px 20px;
  margin-top: auto; /* pushes footer to bottom */
  width: 100%;
  box-sizing: border-box;
  border-top: #b579a3 10px solid;
}

.social-icons-container ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.social-icons-container ul li {
  /*spaces out icons*/
  /* margin-left: 15px; */
  display: flex;
}
.social-icons-container ul li a {
  color: #b579a3;
  font-size: 28px;
  transition: color 0.3s ease; /*smooths the color change when hovering*/
}
.social-icons-container ul li a:hover {
  color: #f981b4;
}

main,
section,
footer,
nav {
  width: 100%;
  box-sizing: border-box;
}

/* responsiveness */
@media (max-width: 400px) {
  nav {
    flex-direction: column; /* stacks elements vertically */
    align-items: center;
  }
  .internal-links {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  .phone-container {
    left: 10%; /* move closer to left edge */
    width: 80px; /* shrink slightly if needed */
    flex-direction: column; /* stacks elements vertically */
    align-items: center;
  }
}
@media (max-width: 500px) {
  .computer-container {
    left: 1%; /* move closer to left edge */
    flex-direction: column; /* stacks elements vertically */
    align-items: center;
    width: 380px; /* shrink slightly if needed */
  }
}

@media (max-width: 800px) {
  .phone-container {
    left: 5%;
    flex-direction: column; /* stacks elements vertically */
    align-items: center;
  }

  .book-container {
    left: 55%; /* stay right of phone */
    flex-direction: column; /* stacks elements vertically */
    align-items: center;
  }
}

@media (max-width: 500px) {
  .phone-container {
    left: 10%;
    width: 80px;
  }
  .book-container {
    left: 75%;
    width: 180px;
  }
}

.cert-image {
    text-align: center;
    margin-top: 20px;
}

.cert-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
}


/* Target devices with a maximum height of 600px */
@media (max-height: 700px) {
  .computer-container,
  .phone-container,
  .book-container,
  .sofa-area {
    bottom: 2%; /* adjust vertical placement */
    width: 32%; /* shrink objects to fit */
  }

  .book-container {
    left: 25px;
  }
  .internal-links ul {
    gap: 10px; /* tighten nav links */
    font-size: 18px; /* smaller text */
  }
}

#music {
  padding: 20px 30px 100px 30px;

  min-height: 245px;
  margin-top: 50px;
  margin-bottom: 40px;
  background-color: #e6ddf0;
  font-size: 16px;
  text-align: center;
}

#music img {
 max-width: 140px;
 height: auto;
 border-radius: 15px;
}

#music .radio-pic {
  width: 140px;
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
}


.soundcloud {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* spacing between tracks */
  color: #b579a3;
}

.track {
  background-color: #f5f5f5; /* optional container background */
  padding: 0.5rem;
  border-radius: 8px;
}

.track iframe {
  width: 50%;
  height: 80px;
  border: none;
  display: block;
  margin: 0 auto;
  
}

.track-info {
  font-size: 10px;
  color: #b579a3;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Interstate, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Garuda, Verdana, Tahoma, sans-serif;
  font-weight: 100;
  margin-top: 0.25rem;
  
}

.track-info a {
  color: #b579a3;
  text-decoration: none;
  
}

.track-info a:hover {
  text-decoration: underline;
  color: #6495ed;
}

.track iframe {
  width: 50%;
  height: 80px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .track iframe {
    width: 100%;
    height: 120px; 
  }
}

.projects-grid,
.website-grid {
  max-width: 1200px;   
  margin: 0 auto;      
}

/* @media (min-width: 1200px) {
  .projects-grid,
  .website-grid {
    grid-template-columns: repeat(3, 1fr);
  }
} */

#contact {
  padding: 80px 40px;
  min-height: 200px;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-top: 40px;
  background-color: #fcf9f5;
  text-align:center;
}


.contact-section {
  max-width: 600px;
  margin: 40px auto 70px auto;
  padding: 15px 20px 20px 20px;
  border-radius: 8px;
  background-color:#d3b2c9
  

}

.contact-section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  
  
}

.form-group {
  display: flex;
  flex-direction: column;
  
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 30px;;
  text-align: center;
  color:whitesmoke;
  font-weight: bold;
  
}

.form-group input,
.form-group textarea {
  padding: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  font-family: "Zen Maru Gothic", sans-serif;
}

.form-group textarea {
  min-height: 500px; /* or 200px */
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f981b4;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.btn-primary {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background-color:#a3c0a9; 
  color: whitesmoke;
  font-size: 1.5rem;
  
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  
}

.btn-primary:hover {
  background-color: #a2ebb2;
  color:#b579a3 
}

.btn-primary:active {
  transform: scale(0.98);
}

#thanks {
  padding: 80px 40px;
  min-height: 200px;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-top: 40px;
  background-color: #fcf9f5;
  text-align:center
}

#thanks h2 {
  margin: 40px;
  font-size: 2.4rem;
}

#thanks p {
  margin-top: 40px;
  font-size: 1.2rem;
}

@media (max-width: 2500px) {
  .phone-container {
    left: 5%;
    flex-direction: column;
    align-items: center;
    width: 20%;
  }
  .book-container {
    left: 95%;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  .book-overlay {
  position: absolute;
  top: 48%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(-28deg);
  width: 0px;
  height: 0px;
  font-size: 16px;
}
  .computer-container {
    width: 20%;
  }
  .screen {
  position: absolute;
  top: 23%; /* adjust vertical placement */
  left: 28%; /* adjust horizontal placement */
  width: 21%; /* scale relative to computer */
  height: 20%;
}
.screen a {
  font-size: 18px;
}
  .phone-overlay {
  position: absolute;
  top: 55%;
  left: 75%;
  font-size: 14px;
}
}



@media (max-width: 1800px) {
  .phone-container {
    left: 5%;
    flex-direction: column;
    align-items: center;
    width: 20%;
  }
  .book-container {
    left: 95%;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  .book-overlay {
  position: absolute;
  top: 48%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(-28deg);
  width: 0px;
  height: 0px;
  font-size: 14px;
}
  .computer-container {
    width: 25%;
  }
  .screen {
  position: absolute;
  top: 23%; /* adjust vertical placement */
  left: 28%; /* adjust horizontal placement */
  width: 20%; /* scale relative to computer */
  height: 20%;
}
.screen a {
  font-size: 16px;
}
  .phone-overlay {
  position: absolute;
  top: 55%;
  left: 75%;
  font-size: 14px;
}
}





@media (max-width: 1280px) {
  .phone-container {
    left: 5%;
    flex-direction: column;
    align-items: center;
    width: 20%;
  }
  .book-container {
    left: 95%;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  .book-overlay {
  position: absolute;
  top: 48%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(-28deg);
  width: 0px;
  height: 0px;
  font-size: 14px;
}
  .computer-container {
    width: 25%;
  }
  .screen {
  position: absolute;
  top: 23%; /* adjust vertical placement */
  left: 28%; /* adjust horizontal placement */
  width: 18%; /* scale relative to computer */
  height: 18%;
}
.screen a {
  font-size: 16px;
}
  .phone-overlay {
  position: absolute;
  top: 55%;
  left: 75%;
  font-size: 14px;
}
}



@media (max-width: 1024px) {
  .phone-container {
    left: 5%;
    flex-direction: column;
    align-items: center;
    width: 20%;
  }
  .book-container {
    left: 95%;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  .book-overlay {
  position: absolute;
  top: 48%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(-28deg);
  width: 0px;
  height: 0px;
  font-size: 14px;
}
  .computer-container {
    width: 25%;
  }
  .screen {
  position: absolute;
  top: 23%; /* adjust vertical placement */
  left: 28%; /* adjust horizontal placement */
  width: 16%; /* scale relative to computer */
  height: 16%;
}
.screen a {
  font-size: 16px;
}
  .phone-overlay {
  position: absolute;
  top: 55%;
  left: 75%;
  font-size: 14px;
}
.contact-section {
  max-width: 600px;
  max-height: 800px;

}
.form-group textarea {
  min-height: 400px; /* or 200px */
}

}

/* ========== 912px and below ========== */
@media (max-width: 932px) {
  .phone-container {
    left: 5%;
    align-items: center;
    width: 20%;
  }
  .computer-container {
    width: 40%;
  }
  .screen {
  position: absolute;
  top: 23%; /* adjust vertical placement */
  left: 28%; /* adjust horizontal placement */
  width: 20%; /* scale relative to computer */
  height: 20%;
}
.screen a {
  font-size: 22px;
}
  .book-container {
    left: 95%;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  .book-overlay {
  position: absolute;
  top: 48%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(-28deg);
  width: 0px;
  height: 0px;
  font-size: 18px;
}
}

@media (max-width: 853px) {
  .phone-container {
    left: 5%;
    flex-direction: column;
    align-items: center;
  }
  .computer-container {
    width: 40%;
  }
  .screen {
  position: absolute;
  top: 23%; /* adjust vertical placement */
  left: 28%; /* adjust horizontal placement */
  width: 18%; /* scale relative to computer */
  height: 18%;
}
.screen a {
  font-size: 18px;
}
  .book-container {
    left: 95%;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  .book-overlay {
  position: absolute;
  top: 48%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(-28deg);
  width: 0px;
  height: 0px;
  font-size: 18px;
}
.contact-section {
  max-width: 500px;
  max-height: 600px;

}
.form-group textarea {
  min-height: 200px; /* or 200px */
}

}

@media (max-width: 768px) {
  .phone-container {
    left: 5%;
    flex-direction: column;
    align-items: center;
  }
  .computer-container {
    width: 40%;
  }
  .screen {
  position: absolute;
  top: 23%; /* adjust vertical placement */
  left: 28%; /* adjust horizontal placement */
  width: 18%; /* scale relative to computer */
  height: 18%;
}
.screen a {
  font-size: 18px;
}
  .book-container {
    left: 95%;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  .book-overlay {
  position: absolute;
  top: 48%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(-28deg);
  width: 0px;
  height: 0px;
  font-size: 18px;
}

.contact-section {
  max-width: 400px;
  max-height: 600px;

}
.form-group textarea {
  min-height: 200px; /* or 200px */
}

}


/* ========== 540px and below ========== */
@media (max-width: 540px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  .internal-links {
    font-size: 12px;
  }
  .phone-container {
    left: 8%;
    width: 50px;
  }
  .computer-container {
    left: 1%;
    width: 40%;
    flex-direction: column;
    align-items: center;
  }
  .book-container {
    left: 85%;
    width: 80px;
  }
    .phone-container {
    left: 5%;
    flex-direction: column;
    align-items: center;
    width: 23%;
  }
  .phone-overlay {
  position: absolute;
  top: 55%;
  left: 75%;
  font-size: 12px;
}
  .computer-container {
    width: 35%;
  }
  .screen {
  position: absolute;
  top: 23%; /* adjust vertical placement */
  left: 28%; /* adjust horizontal placement */
  width: 14%; /* scale relative to computer */
  height: 14%;
}
.screen a {
  font-size: 12px;
}
  .book-container {
    left: 95%;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  .book-overlay {
  position: absolute;
  top: 48%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(-28deg);
  width: 0px;
  height: 0px;
  font-size: 12px;

}


.contact-section {
  max-width: 400px;
  max-height: 600px;

}
.form-group textarea {
  min-height: 200px; /* or 200px */
}


/* ========== 430px and below ========== */
@media (max-width: 430px) {
  
    .phone-container {
    left: 10%;
    width: 40px;
    flex-direction: column;
    align-items: center;
  }

  .computer-container {
    left: 1%;
    width: 190px;
    flex-direction: column;
    align-items: center;
  }

  .book-container {
    left: 95%;
    width: 80px;
  }
  .book-overlay {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-28deg);
  width: 0px;
  height: 0px;
  font-size: 12px;

}

.screen {
  position: absolute;
  top: 23%; /* adjust vertical placement */
  left: 28%; /* adjust horizontal placement */
  width: 17%; /* scale relative to computer */
  height: 15%;
  

}

.screen a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  color: #b579a3;
  font-size: 14px;
  text-decoration: none;
}

.phone-container {
  position: absolute;
  bottom: 0; /* distance from bottom of page */
  width: 20%;
  
}
.phone-overlay {
  position: absolute;
  top: 55%;
  left: 75%;
  font-size: 12px;

}
.contact-section {
  max-width: 300px;
  max-height: 600px;

}
.form-group textarea {
  min-height: 200px; /* or 200px */
}
