@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #3498db, #8e44ad);
    overflow: hidden;
}

#main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#container {
    color: #adf10e;
    width: 80%;
    max-width: 600px;
    background-color: rgba(72, 71, 133, 0.466);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.box {
    margin-bottom: 20px;
}

.box h1 {
    font-size: 24px;
    font-weight: 700;
    color: #e9e3e3;
    margin-bottom: 15px;
}

.box button {
    margin-top: 7px;
    padding: 12px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.box textarea {
    margin-top: 7px;
    width: 100%;
    height: 120px;
    resize: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.box p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.box2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box2 button {
    margin-left: 7px;
    padding: 10px 15px;
    background-color: #f44336;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.box2 button:hover {
    background-color: #e53935;
}

/* New heading style */
h1.new-heading {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Buy me coffee section style */
.buy-me-coffee {
    text-align: center;
    margin-top: 50px;
}

.buy-me-coffee a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFDD00;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.buy-me-coffee a:hover {
    background-color: #FFCA28;
}

/* Desktop styles */
@media (min-width: 768px) {
    /* Adjust container width and padding */
    #container {
      width: 70%;
      padding: 40px;
    }
  
    /* Adjust box width */
    .box {
      width: 100%;
    }
  }
  
  /* Tablet styles */
  @media (max-width: 767px) {
    /* Adjust container width and padding */
    #container {
      width: 80%;
      padding: 30px;
    }
  
    /* Adjust box width */
    .box {
      width: 100%;
    }
  }
  
  /* Mobile styles */
  @media (max-width: 480px) {
    /* Adjust container width and padding */
    #container {
      width: 90%;
      padding: 20px;
    }
  
    /* Adjust box width */
    .box {
      width: 100%;
    }
  }
  