@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #000;
    color: #f7f7f7;
    font-family: 'Roboto', sans-serif;
}

.container{
    position: absolute;
    width: 100%;
    bottom: 40%;
    left: 50%;
    text-align: center;
    transform: translate(-50%);
}


.container .text-field{
    margin: 10rem 0 3rem;
    font-size: 2rem;
}


.copyright{
    position: absolute;
    bottom: 2%;
    left: 50%;
    text-align: center;
    transform: translate(-50%);
} 

.copyright a{
    color: #fff;
}