*{
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: 'Manrope';
    text-decoration: none;
}

body{
    overflow-x: hidden;
}

main{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.background{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1;
    background: url(./background.jpg), #000000;
    background-position: center;
    background-size: cover;
    filter: grayscale(100%) brightness(.6) contrast(.95) saturate(.8);
}

.container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    padding: 30px 50px;
    max-width: 50%;
    border-radius: 10px;
    background: #25252529;
    gap: 20px;
}

.container > img{
    border-radius: 100%;
    border: 5px solid #ffffff;
    width: 145px;
    height: 145px;
}

.title{
    color: #fff;
    font-size: 2em;
}

.subscriber{
    color: #999999
}

.description{
    color: #A1A1A1;
}

.button{
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media screen and (max-width: 850px) {
    .container{
        max-width: unset;
        border-radius: 0;
    }
}