body{
    background-color: #181818;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 100vh;
}
.container{
    display: flex;
    flex-direction: row;
}
.maker,.visible,.code{
    width: 300px;
    height: 500px;
    background-color: white;
    box-shadow: 0px 0px 10px 10px rgb(218, 212, 212);
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#width,#height,#text{
    width: 200px;
    height: 30px;
    text-align: center;
    color: white;
    background-color: #181818;
    border: none;
    outline: none;
    box-shadow: 0px 0px 10px 3px #181818;
    margin: 15px;
}
p{
    color: #181818;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
}
#bg_color,#color{
    width: 150px;
    height: 40px;
    box-shadow: 0px 0px 5px 3px #181818;
}
#submit{
    width: 200px;
    height: 40px;
    border: none;
    background-color: #181818;
    color: white;
    margin: 40px;
    box-shadow: 0px 0px 5px 5px #383636;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}
.write_code{
    width: 260px;
    height: 400px;
    background-color: #181818;
    display: flex;
}
#output{
    color: white;
    text-align: center;
    font-size: 35px;
}
#copy{
    width: 260px;
    height: 45px;
    background-color: blue;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
}
#copy:hover{
    background-color: rgb(35, 35, 230);
}
@media only screen and (max-width: 1260px){
    .container{
        flex-direction: column;
    }
    .maker,.visible,.code{
       width: 400px;
    }
}