*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #e1e8eb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

textarea{
    all: unset;
}

.Background{
    top: 0;
    position: absolute;
    z-index: -1;
    height: 254px;
    width: 100%;
    background-image: linear-gradient(
        to right,
        rgba(52, 3, 82, 0.9),
        rgba(24, 120, 175, 0.9)
        );
}

.First_Heading{
    font-size: 65px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    margin-top: 75px;
}

.First_Heading_Special{
    font-weight: 300;
}

.Countainer{
    width: 1050px;
    height: 520px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
    margin-top: 55px;
    display: flex;
    overflow: hidden;
}

.Textarea{
    resize: none;
    flex: 2;
    font: inherit;
    padding: 30px 40px;
    font-size: 22px;
}

.Textarea::placeholder{
    font-weight: 500;
    color: #959c9f;
}

.States{
    flex: 1.3;
    display: flex;
    background-color: #f1f6f8;
    flex-wrap: wrap;
}

.State{
    flex: 1 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.State:nth-child(1),
.State:nth-child(2){
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.State:nth-child(1),
.State:nth-child(3){
    border-right: 1px solid rgba(0,0,0,0.08);
}

.State_Number{
    color: #4d5457;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 10px;
}

.State_Number--limit{
    color: red;   
}

.Second_Heading{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #747a7c;
}

.Footer{
    width: 1050px;
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    opacity: 0.4;
}

@media (max-width: 1150px){
    .Countainer{
        width: 85vw;
        flex-direction: column;
    }

    .First_Heading{
        font-size: 7vw;
    }

    .State{
        padding: 15px 10px;
    }

    .State:nth-child(1),
    .State:nth-child(2),
    .State:nth-child(3){
        border: none;
    }

    .State_Number{
        font-size: 20px;
    }

    .Footer{
        width: initial;
        flex-direction: column;
        align-items: center;
    }
}