@media screen and (max-width: 768px) {
    body{
        font-size: 14px;
    }
    p{
        font-size: 14px;
    }
    a{
        font-size: 14px
    }
    h2{
        font-size: 24px;
    }
}

body{
    background-color: black;
    background-image: url(RecycledRags.jpg);
    box-sizing: border-box;
    font-family: 'Poppins';
}
.container{
    margin-top: 5%;
    text-align: center;
    align-items: center; 
    width: 100%;
    display: flex;
    justify-content: center;
    height: 80vh;
}
.container a{
    width: 50px;
    text-align: left;
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.container a:hover{

    text-decoration: underline;
}
form{
    background-color: rgb(226, 186, 99);
    border: 3px solid white;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
}
form input, form textarea{
    border: 1px solid black;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    border-radius: 7px;
}
form a{
    text-align: center;
}

form button{
    text-align: center;
    cursor: pointer;
    font-size: medium;
    font-weight: bold;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background-color: #fff7f7;
    width: 180px;
    margin: 20px auto;


}
form button:hover{
    border: 1px solid black;

}
:placeholder-shown{
    font-weight: bold;
    font-size: medium;
}
