@import url("//fonts.googleapis.com/css2?family=be+vietnam:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
@import url("fonts/fontawesome/css/all.min.css");

html {
  color: #ffffff;
  height: 100%;
  background-image: linear-gradient(to bottom, #1a1e35, #0a0d1f);
}

body {
  margin: 0;
  font-family: "Be Vietnam", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-image: url(background.jpg);
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  height: 100%;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

button {
  user-select: none;
}

* {
  outline: none;
  box-sizing: border-box;
}

.topbar {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #ffffff11;
  padding: 10px 30px;
}

.topbar .logo {
  height: 50px;
  position: relative;
}

.topbar .logo img {
  width: auto;
  height: 100%;
}

.topbar .topnav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.topbar .topnav ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.topbar .topnav ul li {
  margin-left: 30px;
}

.topbar .topnav a {
  color: #f5b96b;
  text-decoration: none;
  font-weight: 500;
}

.topbar .topnav a:hover {
  text-decoration: none;
  color: #fea430;
}

.mobile-burger {
  display: none;
  font-size: 28px;
  color: #ffeeee;
  margin-left: auto;
}

.topbar .topnav a.button {
  background-color: #fea430;
  color: #fff;
  display: flex;
  height: 36px;
  padding: 0 20px;
  align-items: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: ease-in-out 100ms;
} 
.topbar .topnav a.button:hover {
  background-color: #df912b;
}
.container {
  box-sizing: border-box;
  margin: 0px auto;
  max-width: 1200px;
  padding: 50px 24px;
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 100px;
  flex: 1;
}

.title {
  font-size: 36px;
  margin-bottom: 40px;
  margin-top: 50px;
}

.left {
  margin-right: -100px;
}
.left-actions {
  display: flex;
  align-items: center;
}

.left-actions a {
  text-decoration: none;
  color: #fea430;
  margin-right: 25px;
}

.left-actions a.button {
  background-color: #fea430;
  color: #fff;
  display: flex;
  height: 36px;
  padding: 0 20px;
  align-items: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: ease-in-out 100ms;
} 
.left-actions a.button:hover {
  background-color: #df912b;
}


.right {
  width: 560px;
  flex-shrink: 0;
}

.right img {
  width: 100%;
  height: auto;
}

.footer {
  font-size: 0.85rem;
  border-top: solid 1px #ffffff11;
  color: #abadb1;
}

.footer-inner { 
  height: 60px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0px 24px;
  display: flex;
  align-items: center;
  margin: auto;
}

.footer-inner i {
  color: #fea430;
}

.mobile-menu {
  position: fixed;
  min-height: 100vh;
  background-color: #0a0d1f;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  display: none;
}


.mobile-menu.showed {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin-bottom: 30px;
}

.mobile-menu a {
  color: #f5b96b;
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu-close {
  position: absolute;
  right: 15px;
  top: 10px;
  -webkit-appearance: none;
  border: none;
  background: none;
  color: #fff;
  padding: 0;
  font-size: 1.4rem;
}

@media only screen and (max-width: 480px) {
  .topbar .topnav {
    display: none;
  }

  .mobile-burger {
    display: block;
  }
  .container {
    padding: 10px 20px;
  }
  .right {
    display: none;
  }
  .left {
    padding-right: 0;
    margin-right: 0;
  }
  .title {
    font-size: 32px;
  }
}