*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body{
    width: 100dvw;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #232429;
}
.content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height: 400px;
    width: 800px;
    background-color: #202020;
    border: 3px solid #4b4b4b;
    border-radius: 30px;
    h1{
        color: #dedede;
    }
    div{
        margin: 0px 50px ;
    }
    .photo{
        img{
            height: 256px;
            border-radius: 128px;
        }
    }
    .info{
        width: 300px;
        hr{
            margin: 6px 15px;
        }
        .name{
            h1{
                font-size: 28px;
            }
        }
        .interest{
            li{
                color: #a8a8a8;
                font-size: 18px;
            }
        }
        .media_link{
            display: flex;
            justify-content: space-around;
            position: relative;
            bottom: -50px;
            a{
                color: #a8a8a8;
                font-size: 30px;
            }
        }
    }
}

@media (max-width:820px) {
    .content{
        width: 90%;
        height: 500px;
        display: block; 

        .photo{
            display: flex;
            justify-content: center;
            margin: 0px 20px;

            img{
                height: 200px;
            }
        }
        .info{
            width: auto;
            margin: 0px 10px;
            margin-top: 20px;

            h1{
                text-align: center;
            }
        }
    }
}