.photo{
    border-radius: 100%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: 40% center;
}
.container {
    margin-bottom:100px;
}

body{
    overflow-y: scroll;
    background-image: url('https://i.imgur.com/s7UJlUc.png');
    background-position: center;
    background-repeat: repeat;
    background-size: 1000px 1000px;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
@media(max-width:800px){
    body{
        background-attachment: unset;
    }
}
.spacer{
    padding: 25px 0px;
}

.panel__contact{
    text-align: center;
}


@media(max-width:600px){
    .photo{
        width: 200px;
        height: 200px;
    }
    body{
        background-size: 500px 500px;
    }
}

@media(max-width:350px){
    .photo{
        width: 150px;
        height: 150px;
    }
}