@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #720303;
  background-image: url('./image/pics/trump-bg.jpg');
  background-size: cover;
  background-position: center;
  color: aliceblue;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.text-container h1 {
  font-size: 68px;
  font-weight: 700;
  letter-spacing: 20px;
}

.image-container h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 10px;
  color: aliceblue;
}

.image-container {
  padding: 10px;
}

.image-container .image img {
  width: 350px;
  max-width: 100%;
}

.image-container p {
  font-size: 20px;
  margin: 20px 0;
}

.input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18vw;
  height: 50px;
  border-radius: 20px;
  background: rgba(68, 81, 255, 0.952);
  margin-top: 20px;
}

.input .talk {
  background: transparent;
  outline: none;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.input .talk i {
  font-size: 20px;
  color: #b4ffff;
}

.input .content {
  color: #ffffff;
  font-size: 15px;
  margin-left: 10px;
}

/* Responsive adjustments for tablets and smaller screens */
@media (max-width: 700px) {
  .text-container h1 {
    font-size: 40px;
    letter-spacing: 10px;
  }

  .image-container h2 {
    font-size: 25px;
  }

   
  
  .input {
    width: 50vw;
    height: 45px;
  }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 480px) {
  .text-container h1 {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .image-container h2 {
    font-size: 20px;
    letter-spacing: 5px;
  }

  .image-container .image img {
    width: 100%;
  }

  .input {
    width: 80vw;
    height: 40px;
  }

  .image-container p {
    font-size: 16px;
  }

  .h2{
    font-size: 11px;
  }
}


.text-container {
  text-align: center; /* Center align text */
}

.socials {
  display: flex;
  justify-content: center; /* Center the social icons */
  margin-top: 15px; /* Space above icons */
}

.social-icon {
  width: 50px; /* Set icon width */
  height: auto; /* Maintain aspect ratio */
  margin: 0 10px; /* Space between icons */
  transition: transform 0.3s; /* Add a transition effect */
}

.social-icon:hover {
  transform: scale(1.1); /* Slightly enlarge the icon on hover */
}
