* {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

body {
    background-color: #f1f1f1;
    font-family: Arial;
}
.about{

}
.about .about-img{
width: 250px;
height: 250px;
margin: auto;
background: #fff;
padding: 5px;
border: 1px solid #ccc;
border-radius: 50%
}
.about .about-img img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%

}
footer{
    background: #555;
    padding: 50px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%
}
footer .soial-icons{
display: flex;
max-width: 70%;
margin: auto;
justify-content: center
}
footer .soial-icons .social{
    margin-right: 20px;
    width: 25px;
    height: 25px
}
footer .soial-icons .social:hover{
    opacity: 0.5
}
footer .soial-icons .social img{
    width: 100%
}
/* Center website */
.main {
    max-width: 1000px;
    margin: auto;
    padding-top: 100px
}

h1 {
    font-size: 50px;
    word-break: break-all;
}

.row {
    margin: 8px -16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
    padding: 8px;
}

/* Create four equal columns that floats next to each other */
.column {
    width: 50%;
}

/* Clear floats after rows */ 
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Content */
.content {
    background-color: white;
    padding: 10px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
    .column {
        width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}