@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200&display=swap');

body, html {
  height: 100%;
  overflow: hidden;
  background:#000015;
  color:white;
  font-family: 'Roboto Mono', monospace;
}
#displayout{
  width:100%;
 display:flex;
  flex-flow:column;
}

#output{
  margin:18px auto;
  display:flex;
  justify-content: center;
  text-shadow: 0px 0px 20px #0000cc,0px 0px 10px #0000ff;
  font-size:54px;
}
#inputtext{
  margin:auto;
  width:70%;
  outline:none;
  padding:10px;
}
#inputarea{
  margin:auto;
  width:40%;
}
#btn{
  margin:auto;
  width:20%;
  padding:10px;
}
.letters{
  margin:10px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.content {
  text-align: center;
  margin-left: 700px;
  margin-right: 700px;
  padding: 20px;
  display: inline-block;
}

.matrix {
  font-size: 20px;
  line-height: 1;
}

.matrix a {
  color: aliceblue;
  text-decoration: none;
  position: relative;
}

.matrix a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background-color:darkgray;
}

.notification {
  position: absolute;
  bottom: 600px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000015;
  border: 1px solid aliceblue;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 16px;
  color: aliceblue;
  z-index: 9999;
}

.resume-button {
  position: relative;
  display: inline-block;
  padding: 7px 31px;
  background-color: #000015;
  border: 1px solid aliceblue;
  color: aliceblue;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
.resume-button:before,
.resume-button:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.resume-button:before {
  left: -100%;
  border-bottom-right-radius: 50%;
}
.resume-button:after {
  right: -100%;
  border-top-left-radius: 50%;
}
.resume-button:hover {
  background-color: #020244;
}
.resume-button:hover:before,
.resume-button:hover:after {
  width: 100%;
}
