@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #000;
    color: #f7f7f7;
    font-family: 'Roboto', sans-serif;
}

h1{
    margin-top: 1rem ;
    text-align: center;
}

textarea{
    width: 40rem;
    padding: 1rem;
    font-size: 1rem;

}
.container{
    text-align: center;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%);
}

.container p{
    margin-top: 1rem;
    font-size: 1rem;
}
.copyright{
    width: 100%;
    position: fixed;
    bottom: 2%;
    left: 50%;
    text-align: center;
    transform: translate(-50%);
} 

.copyright a{
    color: #fff;
}

@media screen and (max-width: 750px) {
    textarea{
        width: 20rem;
    }
    
}