body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: rgb(255, 222, 201);
    text-align: center;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh; /* Ensures the background fills the viewport */
  }
  
  .moving-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(254, 181, 181), rgb(255, 159, 159), rgb(255, 137, 137), rgb(255, 127, 127));
    background-size: 300% 300%;
    animation: gradient-move 8s ease infinite;
  }
  
  @keyframes gradient-move {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  

h1 {
    color: rgb(255, 255, 255);
    background-color: rgb(254, 181, 181);
    padding: 20px 20px;
    border: 1px solid rgb(254, 181, 181);
    border-radius: 5px;
    
    text-align: center;
}

h3 {
    font-size: 100px;
}

p {
    color: #000000;
    text-align: center;
}

.hover-heading {
    font-size: 2em;
    color: #ffffff;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 4px 4px 4px #b4b4b4da;
}

.hover-heading:hover {
    color: #ffffff;
    box-shadow: 4px 4px 4px #000000;
    transform: scale(1.0);
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgb(254, 181, 181);
    background-color: rgb(254, 181, 181);
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.5s ease;
    transform: scale(1.0);
    box-shadow: 3px 3px 3px #8d8b8b;
}

.button-link:hover {
    background-color: rgb(255, 165, 165);
    border: 1px solid rgb(255, 165, 165);
    box-shadow: 4px 4px 4px rgb(0, 0, 0);
}

.textboxone {
    background-color: rgb(255, 255, 255);
    padding: 50px 50px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    transform: scale(1.0);
}

.textboxone:hover {
    border-color: #ffffff;
    box-shadow: 8px 8px 8px rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}

.content {
    display: flex;
    align-items: center;
    margin: 20px;
}
.text-box {
    flex: 1;
    padding: 20px;
}
img {
    max-width: 200px;
    border-radius: 8px;
}
