body {
    margin: 0;
    background-color: #1C1C1C;
    color: white;
    font-family: "Karla", sans-serif;
}

#container {
    max-width: 60%;
    margin: 50px auto;
    background: #1F2937;
    border: 3px solid white;
    border-radius: 10px;
    text-align: start;
    padding: 60px;
    box-shadow: 5px 10px #000;
}
h1 {
    font-weight: 800;
    font-size: 2.5rem;
    
}
#title {
    color: #10B981;
}
p {
    margin-bottom: 40px;
    color: #D5D4D8;

}
button {
    width: 100%;
    background: #10B981;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 9px 17px;
}
hr {
    color: #D5D4D8;
    height: 0.3px;
    margin-top: 40px;
    margin-bottom: 40px;
}
#generator-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
}
.result {
  
    border-radius: 6px;
    border: none;
    height: 39px;
    background: #273549;
    color: #55F991;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    h1 {
        max-width: 70%;
    }
    button {
        width: 40%;
    }

    #generator-div {
        flex-direction: row;
    }
    .result {
        flex: 1;
    }
}
    