*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.content{
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.header{
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
}