#modal {
    margin-top: 30vh;
    background-color: rgb(87, 77, 77, 0.93);
    border-radius: 7px;
    min-height: 30vh;
    height: auto;
    width: 50vw;
}

#intro {
    color: rgb(236, 192, 185);
}

h1 {
    font-size: 50px;
    font-weight: bold;
    margin-top: 20px;
}

section p {
    font-size: 20px;
}

form {
    margin: 5px 20% 5px 20%;
}

label{
    float: left;
    color: rgb(255, 251, 251);
}

.form-control {
    text-align: left;
}

.btn {
    background-color: rgb(170, 239, 249);
    color: black;
    Font-size: 20px;
    font-weight: bold;
    margin-top: 3%;
    width: 40%;
    margin-bottom: 3%;
}

footer p {
    position: absolute;
    bottom: 0;
    height: auto;
    margin-right: 2vw;
    margin-left: 80vw;
    color: rgba(255, 251, 251, 0.144);
    text-align: center;
    font-size: 15px;
}

@media only screen and (max-width: 800px){
    #modal {
        width: 98vw;
        min-height: 30vh;
        height: auto;
        margin-top: 2vh;
        margin-left: 1vw;
        margin-right: 1vw;
    }

    h1 {
        font-size: 30px;
    }

    section p {
        font-size: 15px;
    }

    .btn {
        font-size: 15px;
    }

    footer p {
        font-size: 11px;
        width: 50%;
        margin-left: 25%;
    }
}