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

body {
  width: 100%;
  position: relative;
  font-family: 'poppins', sans-serif;
  background-image: url(../img/beige-background.jpg);
  color: white;
}

a {color: #497ca7;}

::selection {
  background: #1b1b1b;
  color: #fff;
}

.navbar {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw 0 0;
  background: #523e29;
  z-index: 9;
}

.navbar:hover {
  background: rgb(112, 29, 29);
}

.logo {
  height: 60px;
  float: left;
}

.links-container {
  display: flex;
  list-style: none;
}

.link {
  padding: 10px;
  margin-left: 10px;
  text-decoration: none;
  text-transform: capitalize;
  color: #ffffff;
}