@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  color: #fff;
  font-family: "Roboto", serif;
}
body {
  margin: 0;
  padding: 0;
  background-color: #181c14;
  display: flex;
}
h1 {
  font-weight: 600;
  font-size: 33px;
  padding: 200px 0;
}
.side-bar {
  background-color: #3c3d37;
  width: 244px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
}

.bottom-section{
    width: 100%;
    display: flex;
    justify-content: center;
}

.info{
    color: rgba(255, 255, 255, 0.3);
    padding: 10px;
}
input{
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: rgba(0,0, 0, 0.05) 0 54px 55px,
    rgba(0,0, 0, 0.05) 0 -12px 30px,
    rgba(0,0, 0, 0.05) 0 4px 6px,
    rgba(0,0, 0, 0.05) 0 12px 3px,
    rgba(0,0, 0, 0.05) 0 -3px 5px;
    outline: none;
}   

.input-container {

    width: 100%;
    max-width: 650px;    
  display: flex;
  flex-direction: column;
  align-items: center;
    position: relative;
}

.input-container #submit{
    position: absolute;
    right: 0;
    top: 10%;
    cursor: pointer;
}
button{
    border: 0.5px solid rgba(255, 255, 255, 0.05);
    background-color: transparent;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
}
.nav{
    border-top: 0.5px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    margin: 10px;
}
.history{
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 10px;
    padding: 10px;
}