@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/*purple: 7d1ff4;*/
body {
  overflow-y: hidden;
}

header {
  padding: 30px 80px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  margin-bottom: 100px;
}
a:first-child {
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
}
a:first-child ion-icon {
  height: 32px;
  width: 32px;
}
.box {
  display: flex;
  justify-content: center;
  align-items: center;
}
#apercu {
  content: "";
  width: 100%;
  height: 100px;
}
.circles::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  transform: translate(-300px, 0px);
  border-radius: 50%;
  background: linear-gradient(#ffc107, #e91e63);
  z-index: -10;
}
.circles::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  transform: translate(400px, 200px);
  border-radius: 50%;
  background: linear-gradient(#2196f3, #31ff38);
  z-index: -10;
}
.container {
  height: 400px;
  width: 400px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 23px -5px rgba(0, 0, 0, 0.47);
  -moz-box-shadow: 5px 5px 23px -5px rgba(0, 0, 0, 0.47);
  box-shadow: 5px 5px 23px -5px rgba(0, 0, 0, 0.47);
}
table {
  margin-bottom: 20px;
  margin: auto;
}
td {
  padding: 5px;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-o-inner-spin-button,
input::-o-outer-spin-button {
  -o-appearance: none;
  margin: 0;
}
.percent {
  height: 30px;
  width: 30px;
}

p {
  font-size: 12px;
  padding: 10px;
  border-radius: 10px;
  color: white;
  font-family: monospace;
  background-color: #37274ecb;
  height: 200px;
  width: 350px;
  margin: auto;
}
.copy {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: #7d1ff4;
  color: white;
  border: none;
  position: relative;
  top: -30px;
  left: 350px;
}
.copy ion-icon {
  height: 40%;
  width: 40%;
}

@media only screen and (max-width: 1000px) {
    body{
        height: 100vh;
    }
    header{
        padding: 15px;
    }
    nav{
        margin-bottom: 20px;
    }
    .container{
        height: unset;
    }
    .box{
        padding: 15px;
    }
    p{
        width: 100%;
    }
    .code-out{
        padding: 15px;
    }
    .circles::before{
        display: none;
    }
    .copy{
        left: 300px;
    }
}