
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* background-color: #f4f4f4; */
  background-color: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(85px); 
  color: #333;
  line-height: 1.6;
}

nav{

  background-color: rgba(0, 66, 0, 0.4); 
    color: #fff;
    text-decoration: none;
    list-style: none;
    padding: 10px;
    text-align: center;
    margin-bottom: 0;
    transition: 0.5s;
    position: relative;
    width: 100%;
    height: auto;
}

nav:hover{
    background-color: rgb(45, 81, 81);
}


nav li{
    list-style: none;
    display: inline;
    margin: 2rem;
    font-size: large;
    font-weight: 100;
    transition: 1s;
    
}
nav li:hover{
   color: #64696e;
    font-size: xx-large;
    text-decoration: overline solid #64696e;
    text-shadow: 10 10 15 cyan;
    font-family:monospace;
}

.content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 2rem;
}


header {
  display:inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 3rem;
  margin: 2dvh;
  /* background: linear-gradient(90deg, rgb(39, 37, 37) 0%, rgb(57, 52, 52) 29%); */
  background-color: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(85px); 
  color: white;
  border-radius: 20px;
  box-shadow: 10 10 15 cyan;
}

.picture img {
    width: 250px;
    height: auto;
    border: 2px solid #ffdd57;
    border-radius: 100%;
    transition: transform 0.3s ;
}
.picture img:hover{
    transform: scale(1.1);
    border:3px solid rgba(0, 66, 0, 0.4);
}

.tentang{
  display: inline;
  margin-top: 1rem;
  color: white;
   padding: 3rem;
  /* background: linear-gradient(90deg, rgb(39, 37, 37) 0%, rgb(57, 52, 52) 29%); */
  background-color: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(85px); 
   border-radius: 20px;
  box-shadow: 10 10 15 cyan;
}

.tentang li{
  padding: 10px;
}

header,
.tentang {
  max-width: 45%;
  flex: 1 1 300px;
}
.container{
     margin-left: 20px;
}

.container p{
  padding-top: 20px;
    margin-left:20px ;
    color: gold;
    text-shadow: 0px 0px 5px whitesmoke;

}

.container p:hover{
    color:#52a4f6 ;
    transform: scale(1.2);
    transform: translateX(5px);
    text-shadow: none;
}

.judul{
    margin-left: 20px;
    text-shadow: 0px 0px 5px whitesmoke;

}


.container .name{
    padding-top:5px ;
    margin-left:20px;
    color: white;
    text-shadow: 0px 0px 5px whitesmoke;
}

.container h1 span {
  color: #ffdd57;
    transition: transform 0.3s ;
}

.container h1 span:hover{
    color:#62acf7 ;
    transform: scale(1.02);
    text-shadow: none;
}

.container .btn {
  margin-top: 30px;
  margin-left: 20px;
  padding: 10px 20px;
  background-color: white;
  color: gold;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ;
}

.container .btn:hover {
  background-color: #ffdd57;
  color: #000;
}

section#mySection {
  padding: 30px;
  display: none;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  /* background-color: #fff; */
   background-color: rgba(56, 55, 55, 0.4); 
  backdrop-filter: blur(25px); 
  border-radius: 20px;
    margin: 2vh;

}


#myfooter {
    display: none;
    font-family: 'Courier New', Courier, monospace;
    background-color: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(25px); 
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: #fff;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 80%;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    flex-wrap: wrap; 
}

.bagan-1 {
  background-color: #e3f2fd;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bagan-1 p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1976d2;
}

.bagan-1 ul {
  list-style-type: disc;
  padding-left: 20px;
}

.bagan-1 li {
  margin-bottom: 8px;
}

footer.foot {
  background-color: #212121;
  color: #000000;
  padding: 20px;
  text-align: center;
}

.teks-ftr {
  font-style: italic;
  margin-bottom: 15px;
}

.logo {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.logo a svg {
  transition: transform 0.3s ;
}

.logo a:hover svg {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .container {
    margin-left: 0;
  }

  section#mySection {
    flex-direction: column;
    align-items: center;
  }

  footer{
    align-items: center;
    flex-direction: column;
    font-size: xx-small;

  }

  .logo a svg{
    flex-direction: column;
    align-items: center;
  }

  .content {
    flex-direction: column;
    align-items: center;
  }

  header,
  .tentang {
    max-width: 90%;
  }
}
