@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	width: 100vw;
	height: 100vh;
	background-color: #ffffff;
	font-family: 'Open Sans', sans-serif;
}

h1{
    margin-bottom: 20px;
    font-size: 1.5em;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 100vh;
    max-width: 600px; 
    margin: 0 auto;
}

.box{
    padding: 30px;
    display: flex;
    background: #fff;
    box-shadow: 0 8.9098px 36.6557px rgb(67 67 67 / 6%);
    border-radius: 10.9822px;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.btn {
    background: linear-gradient(to right, #EA0909, #bd1e26);
    background-color: #bd1e26;
    border:none;
    color: #ffffff;
    padding: 6px 21px;
    display: inline-block;
    border-radius: 4px;
    font-size: 13.5px;
    text-decoration: none;
    margin-top: 8px;
    letter-spacing: 0.04px;
    cursor: pointer;
    min-height: 40px;
}
.btn:hover{
    background-color: #bd1e26;
    background: linear-gradient(to right, #bd1e26, #EA0909);
    color: #ffffff;
}

textarea {
    max-width: 100%;
    height: 100px;
    border: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 17px 40px 0 rgba(75, 128, 182, 0.07);
    position: relative;
    font-size: 16px;
    color: #333333;
    transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out,
    box-shadow 0.1s ease-in-out;
    border: 1px solid #eee;
    margin: 20px 0px;
    padding: 12px;
    min-height: 140px;
    font-family: 'Open Sans', sans-serif;
}

textarea::placeholder{
    color: #a7b4c1;
    font-size: 14px;
}
textarea:focus {
  outline: none;
}

#close {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    border: 1px solid #b2b2b2;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}

#result {
    position: absolute;
    background: #fff;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    left: 0;
    padding: 40px;
    display: none;
}
.result-box {
    font-size: 18px;
    line-height: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100%;
}

#message{
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
    font-size: 16px;
}

#timer {
    position: absolute;
    right: 20px;
    top: 20px;
}

@media only screen and (max-width: 600px) {

}