@font-face {  
    src: url(assets/Louis_George_Cafe.ttf) format("truetype");
}

body {
  margin: 0;
  background-color: #111111;
  color: #C2C2C2;
  display: flex;
  justify-content: center;
  align-items: center;i
  min-height: 100vh;
  font-family: 'Louis', Fallback, sans-serif;
}

.navbar_container {
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  justify-content: center;
}

.navbar {
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo_container {
  flex: 1;
}

.logo {
  height: 50px;
  width: auto;
}

.navbar_list_container {
  z-index: 2;
  border-width: 1px;
  border-color: #333333;
  border-style: solid;
  border-radius: 50px;
}

.navbar ul {
  padding:  0;
  padding-left: 20px;
  padding-right: 20px;
  list-style: none;
  display: flex;
  justify-content: space-around;
}

.navbar_item {
  padding:  10px 10px 10px 10px;
  display: inline;
}

.navbar_item a {
  text-decoration: none;
  font-size: 100%;
}

.button_safe {
  flex: 1;
  display: flex;
  justify-content: right;
}

.button_container {
  display: flex;
  justify-content: space-around;
  width: 55%;
}

.button_sign_in_container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button_sign_in {
  cursor: pointer;
  padding: 10px 30px 10px 30px;
  height: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  border-color: #333333;
  border-style: solid;
  border-radius: 10px;
  font-size: 80%;
  transition: background-color 0.5s;
  transition: color 0.5s;
}

.button_sign_in:hover {
  color: #111111;
  background-color: #C2C2C2;
}

.button_sign_up_container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button_sign_up {
  cursor: pointer;
  padding: 10px 30px 10px 30px;
  height: 25%;
  display: flex;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  border-color: #333333;
  border-style: solid;
  border-radius: 10px;
  font-size: 80%;
  transition: background-color 0.5s;
  transition: color 0.5s;
}

.button_sign_up:hover {
  color: #111111;
  background-color: #C2C2C2;
}

.main {
}

.section_00 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.section_01 {
  height: 100vh;
  width: 100vw;
}
















