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


html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    color: #fff;
    background-color: #000;
    font-family: Outfit, sans;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#heading {
    font-size: 90px;
    /* display: inline-block; */
    border-radius: 8px;
    background: linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    border: 3px solid white;
    margin-top: 30px;
    padding: 10px;
    padding-top: 0px;
}

#headingContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

#v {
    font-size: 18px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: 3px solid white;
    border-left: 3px solid white;
    border-right: 3px solid white;
    padding: 0 8px 4px 8px;
}
#mainContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #fff;
    flex-grow: 1;
    margin-bottom: 80px;
    width: 85vw;
    border-radius: 16px;
    padding: 30px;
    gap: 40px;
    overflow-y: auto;
}

.header {
    font-size: 20px;
    margin: 5px;
}

#presets {
    display: flex;
    /* flex-direction: column; */
}
#preset1, #preset2, #preset3, #preset4, #preset5, #preset6 {
    width: 100px;
    /* pad */
}

input[type=button] {
    margin: 5px;
    margin-bottom: 10px;
  }
  /* input[type=button]:hover {
    border: 2px solid #73fc7c;
  } */
  input[type=button]:active {
    transform: translateY(6px);
  }
  input {
    color: #fff;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 15px;
    background-color: black;
    transition-duration: 200ms;
    text-align: center;
    padding: 6px 12px;
    width: 600px;
    font-family: JetBrains Mono,monospace!important;
    outline: none;
  }
  input:hover, input:active {
    border: 2px solid #73fc7c;
  }

  .mc {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

#logsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#previewContainer {
    display: flex;
    flex-direction: column;
    border: 2px solid #fff;
    width: 500px;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    overflow: auto;
}
.previewText {
    font-size: 16px;
    background-color: #fff;
    color: #000;
    padding: 5px;
}

#send {
    /* padding: 50px; */
    color: #fff;
    background-color: #000;
    border: 2px solid #fff;
    border-radius: 8px;
    margin: 40px;
    font-size: 40px!important;
    height: 100px;
    width: 300px;
    font-family: Outfit, sans!important;
    /* font-size:  */
}
#send:hover {
    border: 2px solid #ddd;
}
#send:active {
    transform: rotate(10deg) scale(1.05);
}
#logsContainer {
    border: 2px solid #fff;
    width: 500px;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

.log {
    background-color: #fff;
    color: #000;
    margin: 5px;
    padding: 2px;
    border-radius: 2px;
    font-family: JetBrains Mono, monospace;
}

.active {
    border: 2px solid #73fc7c;
}