@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding-top: 100px;
  background-image: url("Backcv.jpg");
  background-size: cover ;
  background-position: center ;
  background-repeat: no-repeat ;
  background-attachment: fixed;
}

header {
  letter-spacing: 3px; 
  font-size: 1,2rem;
  color: black;
  display: flex; 
  justify-content: center;
   flex-wrap: wrap;
   gap: 100px;
   padding:1rem 4rem;
   align-items: center;
}

header h1{
margin: 0;
line-height: 1;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

nav a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.portfolio{
  max-width: 1100px;
  margin: 40px auto 80px;
  text-align: center;
}

.portfolio-item{
  display: flex;
  justify-content: center;
  align-items: flex-end;   
  gap: 40px;
  text-decoration: none;  
}

.portfolio-item img{
  height: auto;
  border-radius: 8px;
}

.img-logo{  
  width: 480px;
  max-width: 40vw;
}

.img-scene{
  width: 640px;
  max-width: 52vw;
}

.portfolio-caption{
  margin-top: 28px;
  font-weight: 700;
  font-size: clamp(16px, 2.3vw, 24px);
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  color: #202020;
}


