* {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  background-image: url("../assets/imgs/landscape.png");
  background-size: cover;
  background-position: 0 0px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: rgb(123, 207, 249);
  margin: 0;
  display: flex;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
  font-family: "ubuntu", sans-serif;
}

a {
  text-decoration: none;
}

nav {
  background-color: rgb(123, 207, 249);
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 10;
}

footer {
  background-color: rgb(123, 207, 249);
  display: flex;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 10;
}

.footer_links {
  display: flex;
  flex-direction: column;
}
