@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;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1{
    margin-top: 1rem ;
    text-align: center;
}

.container{
    margin-top: 2rem;
    position: relative;
    height: 30rem;
    width: 40rem;
    border: 5px solid #f7f7f7;
    overflow: hidden;
}

img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%,-50%);
    pointer-events: none;
}

.copyright{
    width: 100%;
    position: absolute;
    bottom: 2%;
    left: 50%;
    text-align: center;
    transform: translate(-50%);
} 

.copyright a{
    color: #fff;
}

@media screen and (max-width: 750px){
    h1{
        margin-top: 10rem;
    }
    .container{
        height: 15rem;
        width: 20rem;
    }
}