html {
  box-sizing: border-box;
}

/* The Universal Selector */
*, /* All elements*/
*::before, /* All ::before pseudo-elements */
*::after {
  /* All ::after pseudo-elements */
  /* height & width will now include border & padding by default but can be overridden as needed */
  box-sizing: inherit;
}

body {
  background-image: url("/assets/img/landing.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: #f6f6f6;
  font-family: system-ui, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    'Helvetica Neue', sans-serif;
  margin: 0;
  color: #1a1a1a;
}

nav {
  background-color: #f6f6f6;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  padding: 10px;
  min-height: 60px;
}

#landing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.right {
  margin-left: auto;
}

nav > a {
  margin-left: 16px;
}

#avatar {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  border: 1px solid #1a1a1a;
  margin-left: 20px;
  margin-right: 20px;
}

.menu {
  display: flex;
  list-style-type: none;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

button {
  padding: 5px;
  background: whitesmoke;
  border-color: aqua;
  border-radius: 7px;
}

#not-logged {
  display: flex;
  justify-content: center;
  align-items: right;
  flex-direction: column;
  border: 1px solid #2F3D59;
  display: flex;
  align-items: center;
  background-color: rgb(234, 246, 255);
  padding: 50px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 60vh;
  width: 60vh;
}

#logged {
  display: flex;
  justify-content: center;
  align-items: right;
  flex-direction: column;
  border: 1px solid #2F3D59;
  display: flex;
  align-items: center;
  background-color: rgb(234, 246, 255);
  padding: 50px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 60vh;
  width: 60vh;
}