*{
    font-family: "Open Sans", sans-serif;
    padding: 0;
    margin: 0;
}

body{
    background-color: #FFFFFF;
}

header {
    display: flex;
    justify-content:flex-end ;  
    padding-bottom:30px ;
    width: 100%;
    height: 100%;
}

#leftheader {
    display: flex;
    margin-right: auto;
    align-items: center;
    padding: 10px;
}

#logo{
    width: 250px;
}

#circle {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    object-fit: cover;
    
}  

#circle2 {
    width: 176px;
    height: 176px;
    border-radius: 100%;
    margin: 20px;

}  

#rightheader {
    display: flex;
     align-items: center;
     padding: 20px;

}

.lupa:hover {
    transform: scale(1.3);
}

.lupa{
    transition: transform 0.3s ease;

}


header div a {
    margin:10px;
    text-decoration: none;
}

header div a:hover {
    color: #EF5F4C;
}

#mainphoto {
    display: flex;
    align-items: center;
    object-fit: cover;

}

#bio {
    width: 500px;
    margin: 18px;

}

#bio p {
    font-size: 14px;
    line-height: 170%;
    color: #6C6C6C;
    font-weight: 600;
     text-shadow: 2px 2px 4px #4e4e4ebb;
}

#top {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 40px;
    align-items: center;
}

#icons{
    display: grid;
    grid-template-columns: 10px auto;
    margin-left: auto;
    margin-right: 20%;
    align-items: center;

}

#icons p {
    display: flex;
    margin: 24px;
    font-size: 18px;
    font-weight: 600 ;
    color: #6C6C6C;

}

header, main>#top {
    background-color: #dadada9f;
    
}

.galeria{
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
    gap: 24px;
    padding: 32px;
    
}

.galeria img {
    max-width: 100%;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
}

footer a {
  text-decoration: none;
    padding: 10px
}

footer a:hover {
  color: #EF5F4C;
}

footer p {
  font-weight: 600
}

a:link, a:visited {
  color: #313131;
}