.setcolor{
    color: black;
    background-color: rgb(211, 211, 211);
}
h1{
    text-align: center;
    font-size: 2.5rem;
}
.displayBox{
    width: 39rem;
    height: 37rem;
    background-color: white;
    border: 1px white solid;
    border-radius: 20px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.5rem;
}

h2{
    font-size: 2.5em;
    margin-left: 2rem;
    margin-top: 30px;
}

.Web{
    font-size: 24px;
}

.container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 35px;
} 

.row{
    display: flex;
    flex-direction: column;
}

label{
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

textarea{
    padding: 6px 10px;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 0.9rem;
    
}

input:focus{
    outline-color: rgb(209, 175, 100);
}

.button{
    display: flex;
    justify-content: flex-end;
    grid-column: 1 / span 2; 
}

button{
    font-size: 22px; color: white;
    background-color: red;
    border-radius: 10px;
    border-color: red;
    margin-top: -10px;
    
}

.textarea_space{
    grid-column: 1 / span 2; 
}

.textarea_space textarea{
    width: 100%;
}