html, body {
  margin: 0;
  padding: 0;
  color:#595959;
  font-family: Arial, sans-serif;
}

.consign{
  margin: 0 15px;
}

.consign:hover{
  color: white
}

/* Button styling */
.btn-grey {
  background-color: #595959;
  border: 2px solid;
  color: white;
  padding: 5px 5px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  margin: 0 15px; 
}

/* Flip contact button colors when hovering */
.btn-grey:hover {
  background-color: white;
  border: 3px solid #595959;
  color: #595959;
}

.btn-blue {
  background-color: #4485f3;
  border: 2px solid;
  color: white;
  padding: 5px 5px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  margin: 0 15px; 
}

/* Flip contact button colors when hovering */
.btn-blue:hover {
  background-color: white;
  border: 3px solid #4485f3;
  color: #4485f3;
}


.logo{
  margin-right: auto;
  height: 80px;
  padding-left: 10px;
}

/*FOOTER*/
.footer{
  background-color: #4485f3;
  color:white;
  height: 300px;
  text-align: center;
  font-size: 20px;
  padding-top:10px;
}

.subscribe-container {
  display: flex;
  align-items: center; /* Align items vertically center */
  justify-content: center; /* Center items horizontally */
  gap: 10px; /* Space between the textbox and the button */
  margin-top: 10px; /* Optional: space above the container */
}

.email-box{
  width:250px;
}

/*TEXT*/
.text{
  font-size: 20px;
  padding-left: 20%;
  padding-right: 20%;
  text-align: justify;
}

@media only screen and (max-width: 775px){
  .logo{height: 50px}
  .text{
    padding-left: 5%;
    padding-right: 5%;
    font-size: 16px;
  }
  .footer{
    font-size: 16px;
    height: 275px
  }
}

@media only screen and (max-width: 450px){
  .subscribe-container {gap: 0px}
  .email.box{width:150px}
  .btn-grey {font-size: 16px;}
}

