@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: "Saira", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    background-image: url('../img/baiha-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-aspect-ratio: 2/2) {
    body {
      background-image: url('../img/baiha-background-2.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
  }

footer{
    display: flex;
    justify-content: space-between;
    position: absolute;
    margin: 0 auto;
    left:0; right: 0;
    bottom: 0;
    height: 86px;
    width: 80%;
    max-width: 1200px;
    border-top: solid 1px #f3efe3;
}

footer a{
   color: #f3efe3;
   line-height: 86px;
   text-decoration: none;
   font-size: 18px;
   transition: 0.1s ease transform;
}

footer a:hover{
    transform: scale(1.1);
}

footer nav{
    height: 86px;
    display: flex;
    align-items: center;

}
footer nav a{
    display: inline-block;
    padding-left: 25px;
}
