html,
body {
    overflow: hidden;
}

body {
    background: #000;
    color: #fff;
    position: relative;
    min-height: 100vh;
}

.parent {
    border: 1px solid black;
    margin: 1rem;
    padding: 1rem 1rem;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .parent {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2px;
        margin-top: 0px;
        align-items: center;
    }
}

.child {
    display: inline-block;
    /* border: 1px solid red; */
    padding: 2rem 2rem;
    text-align: center;
    vertical-align: middle;
}

#text-box {
    width: 40%;
    align-items: center;
    display: inline-flex;
    flex-direction: column;
}

.gc {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 20px;
    align-items: center;
}

@media only screen and (max-width: 600px) {
   #text-box {
    width: 100%;
    align-items: left;
    font-size: 8px;
    margin-top: 0px;
    padding-top: 0px;
  }

  .gc {
    display: flex;
    padding-top: 20px;
    align-items: left;
  }
}



textarea {
    resize: none;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 22px;
    appearance: none;
    border: none;
    overflow: auto;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    resize: none;
    /*remove the resize handle on the bottom right*/
}

#midi-box {
    border: 2px solid #aad6a0;
    margin: 10px;
    padding: 0px;
    box-shadow: 10px 10px #dcbaa9;
}

@media screen and (max-width: 600px) {
    #midi-box {
        width: 100%;
        height: 250px;
        margin: 0px;
        padding: 0px;
    }
}

#prompt {
    margin: 5px 5px 5px 5px;
    height: 15vh;
    width: 100%;
    text-align: top;
    vertical-align: top;
    box-shadow: 10px 10px #dcbaa9;
}

@media screen and (max-width: 600px) {
    #prompt {
        font-size: medium;
    }
}

.genButton {
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    align-items: center;
    font-weight: normal;
    width: 150px;
    height: 50px;
    font-size: 14px;
    overflow: hidden;
    margin-left: 30px;
    z-index: 2;
    text-align: center;
    align-items: center;
    vertical-align: middle;
}

.myButton {
    text-decoration: none;
    font-weight: normal;
    width: 150px;
    height: 50px;
    font-size: 14px;
    overflow: hidden;
    margin-left: 30px;
    z-index: 2;
    text-align: center;
    vertical-align: middle;
    font-family: 'Courier New', Courier, monospace;

}

@media screen and (max-width: 600px) {
    .myButton {
        margin-left: 0px;
        width: 50%;
        height: 50px;
    }
}
    
}

input[type="text"] {
    padding: 200px 10px;
    line-height: 28px;
}

.header {
    text-align: center;
    font-style: italic;
    font-size: 40px;
    font-family: 'Courier New', Courier, monospace;
}

@media screen and (max-width: 600px) {
    .header {
        font-size: 30px;
        margin: 0;
        padding: 0;
    }
}

.project-link {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1000;
}

.project-link a {
    color: #fff;
    font-size: 24px;
    font-family: 'Courier New', Courier, monospace;
    text-decoration: none;
    font-weight: bold;
}

.project-link a:hover {
    color: #aad6a0;
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    .project-link a {
        font-size: 18px;
    }
}