@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: white;
    font-family: sans-serif;
    font-size: 19px;
    line-height: 1.8;
    color: black;
}

header{

    background-color: black;
    color: white;
    text-align: center;
    padding:40px;
}

main{
    width: 90%;
    margin: 0 auto ;
}

.profile{
    width: 100%;
    text-align: left;
    display: flex;
    padding-top:250px;
    padding-bottom: 200px;
    background-color: white;
    border-radius: 10px;
    margin: 0 auto;
}

.profile img {
    width: 500px;
    height: 300px;
    padding-bottom: 10px;
    border-radius: 10px;
}

.Profile-text {
    margin-left: 150px;
}


.gallery{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.gallery img{
    width: 350px;
    height: 250px;    
    object-fit: cover;
    border-radius: 10px;
    padding-top: 40x;
    padding-bottom: 10px;
}

    

.photo{
    text-align: center;
    width: 30%;
}

.photo p{
    margin-top: 10px;
    font-size: 14px;
}

footer{
    margin-top: 300px;
    background: black;
    color: white;
    text-align: center;
    padding: 80px;
}