body{
  margin:0;
  font-family: Arial, sans-serif;
  background-image: url("https://wallpapers.com/images/hd/japanese-minimalist-wallpaper-afu3p6ooyp86sphd.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

header{
  background: rgba(170, 107, 107, 0.75);
  backdrop-filter: blur(6px);
  padding: 30px 20px 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#nav{
  display:flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

#nav a{
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  transition: 0.2s ease;
}

#nav a:hover{
  color:lightcoral;
  font-size:large;
  cursor:pointer;
  background: rgba(255,255,255,0.2);
}

section{
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(5px);
  margin: 40px 20px;
  padding: 40px;
  border-radius: 15px;
}
#about a{
  text-decoration: none;
  color:black;
}
#about a:hover{
  color:lightcoral
}

#home{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:20px;
  align-items:center;
}

#home img{
  width:150px;
  border-radius:50%;
}

.project,
.project:visited{
  display:block;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  margin-bottom:15px;
  padding:20px;
  border-radius:10px;
  text-decoration:none;
  color:black;
}

.project:hover{
  border-radius:20px;
  transform: translateY(-5px);
  cursor:pointer;
  color:lightcoral;
}
#contact  a{
  text-decoration: none;
  color:black;
}
#contact a:hover{
  color:lightcoral
}
#contact i{
  margin-right: 8px;
  font-size: 18px;
}

#contact a:hover i{
  color: lightcoral;
}
.project-detail{
  max-width:700px;
  margin:40px auto;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  padding:30px;
  border-radius:10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.project-detail h2{
    margin-bottom:15px;
    color:#333;
}

.project-detail p{
    line-height:1.6;
    margin-bottom:15px;
}
.project-detail a{
  text-decoration: none;
  color: black;
}
.project-detail a:visited{
  color: black;
}
.project-detail a:hover{
  color: lightcoral !important;
}
.aboutme{
  max-width: 700px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.aboutme h2{
    margin-bottom:15px;
    color:#333;
}

.aboutme p{
    line-height:1.6;
    margin-bottom:15px;
}
.aboutme a{
  text-decoration: none;
  color: black;
}
.aboutme a:hover{
  color:lightcoral;
}
#temperature img{
    width: 300px;
    height: auto;
    display: block;
}

#temperature a{
    display: block;
    margin-top: 10px;
    text-align: right;
    text-decoration: none;
    color: black;
}
#temperature a:visited{
    color: black;
}
.container{
  max-width:900px;
  margin:auto;
}
