.contact-container{
    margin: 75px;
    margin-top: 100px;
    font-family: 'Rubik', Arial;
    display: grid;
    grid-template-columns: 1fr  1fr;
    grid-template-areas: 't a' 't b' 't c' 't d' 't e' 't f';
    z-index: 100;
}

.contact-disclaimer{
    grid-area: t;
    padding-right: 100px;
    font-size: large;
    z-index: 100;
}

.contact-input{
    box-sizing: border-box;
    margin-left: 25px;
    margin-bottom: 25px;
    height: 45px;
    width: 90%;
    font-family: 'Rubik', Arial;
    font-size: medium;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 25px;
    border-width: 2px;
    border-color: black;
    border-style: solid;
    box-shadow: 0px 3px 3px 0px rgb(0, 0, 0, 0.35);
    background-color: whitesmoke;
    z-index: 100;
}

.contact-input.big{
    height: 250px;
    vertical-align: top;
    padding-top: 10px;
    padding-bottom: 10px;
    resize: none;
    border-radius: 15px;
}

.contact-send{
    transition: all 0.15s;
    box-sizing: border-box;
    padding: 0px;
    z-index: 100;
    height: 45px;
    width: 90%;
    margin-left: 25px;
    font-family: 'Rubik', Arial;
    font-weight: bold;
    font-size: medium;
    color: black;
    background-color: rgb(250, 190, 5);
    border-radius: 25px;
    border-width: 2px;
    border-color: black;
    border-style: solid;
    box-shadow: 0px 3px 3px 0px rgb(0, 0, 0, 0.35);
    margin-bottom: 25px;
}

.contact-send:active{
    display: block;
    color: rgb(250, 190, 5);
    background-color: black;
}

.contact-send.locked{
    display: none;
    color: whitesmoke;
    background-color: black;
}

.color-rect{
    background-color: rgb(207, 207, 207);
    height: 25px;
    transform: scaleY(1250%) translateY(-46%);
}