@font-face {
  font-family: 'Baby Doll';
  src: url('font/BabyDoll.woff2') format('woff2'),
       url('font/BabyDoll.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PORKYS_';
  src: url('font/PORKYS_.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Baby Doll';
  background: url('pinkback.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  margin: 0;
  padding: 0;
}

header h1 {
  font-size: 6rem;
  color: #ffb8ce; 
  font-family: 'PORKYS_', cursive;
  text-shadow: 3px 3px #aa4152;
  text-align: center;
  margin-top: 30px;
  margin-bottom: -160px;
}

h2 {
  font-family: 'PORKYS_', bold;
  color: #ffb8ce;
  text-shadow: 3px 3px #aa4152;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

h3 {
 font-family: 'PORKYS_', bold;
  color: #ffb8ce;
  text-shadow: 3px 3px #aa4152;
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

.heading {
  position: absolute;
  top: 30px;
  left: 90px;
  font-size: 40px;
  color: #ffb8ce;
  text-shadow: 3px 3px #aa4152;
}
.image-wrapper {
  position: relative;
  width: 100%;
}


.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #ffb6c1;
}


.box {
  position: absolute;
    height: 260px;  
  overflow-y: auto;  
  padding: 15px;
  top: 90px;  
  left: 30px; 
  width: 52%;  
  color: #000;  
  padding: 10px;
  border-radius: 6px;
  font-family: 'Baby Doll';
  font-size: 1.2rem;
  text-align: center;
}

#wrapper {
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
  background-size: cover;
 
}

main section {
  padding: 15px;
  border: 1px dashed #ccc;
  background-color: #fff0f5;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 10px;
}

main p {
  line-height: 1.6;
  margin: 10px 0;
}

footer {
  position: relative;
  text-align: center;
  font-size: 0.9em;
  margin-top: 20px;
  padding: 10px;
  background-color: #ffe4ec;
  border-top: 2px dotted #f99;
}



.image-columns {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.left-column {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-column {
  flex: 3;
}

.image-columns img {
  width: 100%;
  height: auto;

}

.arrow-button {
  font-family: "Baby Doll";
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #ffb6c1;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  transition: background-color 0.3s;
}

.arrow-button:hover {
  background-color: #ffa6c1;
}

.highlight {
  background-color: #ffb8ce; 
  padding: 2px 5px;  
  border-radius: 3px; 
}

.image-wrapper {
  width: 100%;  
  margin-bottom: 30px;  
}


.full-width-boxes {
  width: 100%;  
  display: flex; 
  justify-content: space-between; 
  gap: 20px; 
  margin-top: 30px;
  padding: 0 20px;  
}


.interests-box, .favorites-box {
  background-color: #ffe4ec;
  border-radius: 6px;
  padding: 15px;
  font-family: 'Baby Doll', cursive;
  font-size: 1.2rem;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  width: 48%; 
}


.interests-box h4, .favorites-box h4 {
  font-family: 'PORKYS_', bold;
  color: #ffb8ce;
  text-shadow: 3px 3px #aa4152;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.interests-box ul, .favorites-box ul {
  list-style-type: none;
  padding-left: 0;
}

.interests-box li, .favorites-box li {
  padding: 5px 0;
  text-align: center;
  color: #000;
}


.interests-box li:hover, .favorites-box li:hover {
  color: #ff69b4;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .full-width-boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .interests-box, .favorites-box {
    width: 90%;
    max-width: 500px;
    margin: 0 auto 20px;
    text-align: center;
  }
  
 .heading {
    position: absolute;
    top: 60px;  
    left: 30px;
    font-size: 2rem;
    z-index: 2; 
    color: #ffb8ce;
    text-shadow: 3px 3px #aa4152;
  }

 
  .box {
    position: relative;  
    width: 100%;  
    top: 0;  
    left: -10px;  
    margin-top: 20px;  
    height: 200px; 
    overflow-y: auto;  
    padding: 15px;
    color: #000;
    font-family: 'Baby Doll';
    font-size: 1rem;
    text-align: center;
    background-color: rgba(255, 228, 236, 0.9);  
    border-radius: 6px;
  }
  .image-columns {
    flex-direction: column;  
  }

  .left-column, .right-column {
    flex: 1 100%; 
  }

    .left-column img[src='IMG3/dollme.png'] {
    width: 60%; 
    margin-bottom: 20px;  
  }


  .right-column img[src='IMG3/mememo.png'] {
    width: 100%;  
    margin-bottom: 20px;  
  }

  
  .heading {
    font-size: 30px; 
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

 .box {
    max-height: 220px;
  }
}

