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

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

:root {
  --primary-color: #0d2bc1;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #f4f4f4;
}

.navbar {
  background: #333;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
}

.navbar ul li {
  margin-left: 1rem;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.navbar a:hover {
  color: var(--primary-color);
}

.showcase {
  height: 350px;
  width: 100%;
  background: var(--primary-color);
}

.showcase h1 {
  font-size: 2.5rem;
  color: whitesmoke;
  text-align: center;
  padding: 1rem 0;
}

.showcase form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.showcase form input,
form select {
  font-size: 20px;
  width: 500px;
  max-width: 500px;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 1rem;
}

form button {
  font-size: 20px;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  background: #333;
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
}

form button:hover {
  transform: scale(1.1);
}


.image {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

img {
  display: block;
  margin: auto;
}

.msg {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 1rem;
}

@media only screen and (max-width: 768px) {
  .showcase h1 {
    font-size: 2rem;
  }

  .showcase form input,
  form select {
    width: 90%;
    max-width: 90%;
  }

  img {
  display: block;
  margin: auto;
  }
}

@media only screen and (max-width: 480px) {
  .showcase h1 {
    font-size: 1.8rem;
  }

  .showcase form input,
  form select {
    width: 80%;
    max-width: 80%;
  }

  .image {
  width: 80%;
  margin-top: 2rem;
  margin-bottom: 4rem;
 }

 img {
  display: block;
  margin: auto;
  }
}

@media only screen and (max-width: 360px) {
  .showcase h1 {
    font-size: 1.8rem;
  }

  .showcase form input,
  form select {
    width: 80vw;
    max-width: 100%;
  }

  .showcase form button {
    width: 80%;
    max-width: 80%;
  }

  .image {
  width: 80%;
  margin-top: 2rem;
  margin-bottom: 4rem;
 }

 img {
  display: block;
  margin: auto;
  }
}