@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap");

* {
    box-sizing: border-box;
}

body {
    background-color: #dbd5c5;
    color: #264653 ;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    padding: 20px;
    margin: 0;
}
h1 {
    margin: 20px 0 30px;
    text-align: center;
    color: #e9c46a;

}
.container {
    border-radius: 50px;
    background-color: #2a9d8f;
    color: #e9c46a ;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    padding: 30px;
    max-width: 100%;
}
.result-box {
    background-color: #f4a261;
    color: #264653;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 10px 10px;
    height: 60px;
    width: 100%;
}


.result-box #result {
    word-wrap: break-word;
    max-width: calc(100% - 50px);


} 
.result-box .btn {
    position: absolute;
    top: 10px;
    right: 10px
}  
.btn {
    border: none;
    background-color: #e76f51;
    color: #e9c46a;
    font-size: 20px;
    padding: 8px 10px;
    cursor: pointer;


}
.btn-large {
    display: block;
    width: 100%;

}
.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;


}
.controls #length {
    background-color: #e9c46a;
    color: #e76f51
}

