/*  Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0, 51, 139);
}

.container{
  width: 100%;
  max-width: 410px;
  background: #fff;
  border-radius: 7px;
  padding: 15px 25px;
  overflow: hidden;
  box-shadow: 0 0 10px #fff;
}

button{
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

/* Nav */
nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

nav button{
  width: calc(100% / 2 - 5px);
  font-size: 1.2rem;
  text-align: center;
  height: 45px;
  letter-spacing: 2px;
  border-bottom: 2px solid #ccc;
  opacity: 0.5;
}

nav button.active{
  border-bottom: 2px solid #0283d8;
  font-weight: 700;
  color: #0283d8;
  opacity: 1;
}

::-webkit-scrollbar{
  display: none;
}