body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: orange
}

nav {
  width: 50%;
}

ul {
  list-style-type: none;
  padding-left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

a {
  text-decoration: none;
  color: unset;
}

a:hover {
  opacity: 0.7;
}

main {
  width: 100%;
  display: flex;
}

aside {
  width: 18%;
}

section {
  width: 60%;
  padding: 10px;
}

article {
  padding: 10px 0 15px;
}

h3 {
text-align: center;
}

.about {
  width: 100%;
  display: flex;
}

.about__foto {
  width: 30%;
  display: flex;
  align-items: center;
}

img {
  width: 100%;
  border-radius: 50%;
}

p {
  margin-bottom: 0;
}

.about__inf {
  width: 70%;
  padding-left: 30px;
  margin: 0;
}

#about-FE, #CV  {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  background-color: rgb(0, 68, 255);
}

h4 {
  margin: 0;
}

.contacts {
  display: flex;
  justify-content: end;
  padding: 20px;

}

.copyright {
  text-align: center;
  padding: 30px 20px;
  background-color:rgb(0, 132, 255);
}