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

:root {
  --green-base: #0F706F;
  --green1: #51BDBB;
  --green2: #19BDBA;
  --green3: #3A8786;
  --green4: #083D3C;
}

body {
  background-color:var(--green-base);
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.container {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container img {
  max-width: 50vw;
  max-height: 50vh;
  object-fit: contain;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 2.5rem;
  width: 100vw;
  background-color: var(--green4);
  z-index: 100;
  display: flex;
  align-items: center;
}
footer .column1 {
  width: 33.33%;
  margin-left: 33.33%;
  text-align: center;
}
footer .column2 {
  width: 33.33%;
  text-align: center;
}
footer img {
  height: 1.2rem;
  object-fit: contain;
  margin: 0 10px;
}
@media screen and (max-width: 900px) {
  footer {
    justify-content: space-between;
  }
  footer .column1 {
    width: auto;
    text-align: left;
    margin-left: calc(5% + 10px);
  }  
  footer .column2 {
    width: auto;
    text-align: right;
    margin-right: 5%;
  }  
}
@media screen and (max-width: 600px) {
  footer .column1 {
    display: none;
  }  
  footer .column2 {
    width: 100%;
    text-align: center;
  }  
}