body {
    height: 100vh;
    background: #707070!important;
}

.container {
    height: inherit;
}

.logo {
    margin-top: 30px;
    width: 250px;
}

.texts-container {
    background: #333333;
    padding: 20px 40px;
    border-radius: 10px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    margin: 30px 15%;
}

.texts-container p {
    font-family: "Lexend", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 20px;
    color: #F2F2F2;
    margin: 20px 0;
}

.contact {
    width: 300px;
    height: 60px;
    font-size: 20px;
}

.contact, .submit {
    background: #3D1B9B!important;
    font-family: "Lexend", sans-serif;
    font-weight: 200;
    margin-bottom: 50px;
}

.contact:hover, .submit:hover {
    background: #321485 !important;
}

@media only screen and (max-width: 450px) {
    .texts-container {
        margin: 30px 0;
    }

    .texts-container p {
        font-size: 16px;
    }

    .container {
        padding: 0 30px!important;
    }

    .logo {
        width: 200px;
    }

    .contact {
        width: unset;
        height: unset;
    }

    .texts-container {
        padding: 0 20px;
    }
}

