body {
  font-family: Arial, sans-serif;
    padding: 2rem;
    text-align: center;
    background-image: url("images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.jenny {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
}

.nav {
     padding: 12px 25px;
     font-size: 2rem;
    background: linear-gradient(890deg, #ff8a00, blue);
    color: white;
    border: none;
    border-radius: 8px;
    transition: 0.3s ease;
    height: 50px;
   text-align: center;
}


.container {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
}

.daily {
    color: snow;
    font-weight: 800;
}

.btn {
    padding: 10px 20px;
    margin: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 8px;
   background: linear-gradient(90deg, #ff8a00, #e52e71);
   color: white;
   border: 1px solid #ddd;
    cursor: pointer;
    
}

button:hover {
  background-color: #45a049;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
  text-align: left;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: red;
  font-size: 28px;
  cursor: pointer;
}

.intro {
    padding: 1rem;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
    border: 1px solid orange;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.welcome {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    border: 1px solid blue;
    padding: 0.5rem;
    
}

.introduction {
    padding: 10px 20px;
    margin: 10px;
    font-size: 2.5rem;
    font-weight: 800;
    border-radius: 8px;
    background: transparent;
    color: snow;
   border: 1px solid #ddd;
    cursor: pointer;
  }

  .social-media {
    text-align: center;
    margin-top: 30px;
  }

  .social-media a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s;
  }

  .social-media img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  }

.social-media a:hover {
    transform: scale(1.2);
  }

@media  screen and (max-width: 500px) {
    .modal-content {
        padding: 20px;
        font-size: 0.9rem;
    }

    .nav {
        padding: 25px;
    }

    body {
        padding: 1rem;
        background-size: cover;
        height: 100%;
    }

    .jenny {
        max-width: 200px;
    }
}
