
:root{
    --bg-color: #04090c;
    --hd-color: #00c183;
    --con-color: #0a161c;
    --text-color: #00c183;
}



body {    
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Container {
    width: 85%;
    max-width: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;    
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px var(--hd-color);
}


.Header {    
    width: 100%;
    background: var(--hd-color);
    min-height: 40px;
    font-weight: 900;
    font-size: 30px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    color: var(--con-color)
}


.Content {        
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
    background: var(--con-color);
}

.TextArea{
    font-weight: 700;
    font-size: 22px;
    padding: 10px;
    color: var(--text-color);
    text-align: center;
}

