*{
    box-sizing: border-box;
    color: white;
}

body{
    background-color: rgb(17, 17, 99);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

h2{
    margin: 10px 0 20px;
    text-align: center;
}

.container{
    background-color: rgb(1, 1, 31);
    box-shadow: 0px 2px 10px rgba(255, 255, 255, 0.2);
    padding: 20px;
    width: 350px;
    max-width: 100%;
}

.result-container{
    background-color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 12px 10px;
    height: 50px;
    width: 100%;
}

.result-container #result{
   word-wrap: break-word;
   max-width: calc(100% - 40px); 
}

.result-container .btn{
    position: absolute;
    top: 5px;
    right: 5px; 
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.btn{
    border: none;
    background-color: rgb(24, 28, 48);
    color: #fff;
    padding: 7px;
    border-radius: 8px;
}
.btn-large{
    display: block;
    width: 100%;
}
.btn:hover{
    background-color: cyan;
    color: black;
    transition-delay: 0.4s;
    transition: ease-in;
}

.setting{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}
