@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@700&display=swap');
.material-symbols-rounded {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
  }
html{
    background: #080808;
}
body {
    font-family: 'IBM Plex Mono', monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    margin: 3% 10%;
    color: white;
    cursor: context-menu;
    opacity: 0;
    transition: opacity;
    transition-delay: 250ms;
    transition-duration: 3s;
    text-align: center;
}
nav {
    background-color: rgba(153, 205, 50, 0.050);
    border-color: rgba(139, 207, 38, 0.500);
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    margin: 1%;
    transition: ease-in-out 500ms;
}
nav:hover {
    background-color: #080808;
    border-color: yellowgreen;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    margin: 1%;
}
nav ul {
  display: flex;
  flex-direction: row;
}

.hyperlinks {
    font-size: 24px;
    align-items: center;
    padding: 0px;
    margin: 0%;
    
}
.hyperlinks li {
    padding: 20px;
    align-items: center;
    display: block;
}
.hyperlinks li a {
    text-decoration: none;
    color: white;
    padding: 10px;
    border-radius: 10px;
    transition: ease-in-out 0.5s;

}
.hyperlinks li a:hover {
    text-decoration: none;
    color: greenyellow;
    background-color: rgba(0, 128, 0, 0.250);
}
article {
    display: flex;
    margin: 2% 2%;
    padding: 20px;
    flex:1;
    justify-content: center;
    flex-direction: row;
    min-width: 100%;
}
article div {
    border-style: solid;
    border-color: rgba(139, 207, 38, 0.500);
    border-width: 2px;
    border-radius: 10px;
    min-width: 50%;
    transition-timing-function: ease-in-out;
    transition: 500ms;
    padding-bottom: 5%;
}
article div:hover {
    border-style: solid;
    border-color: greenyellow;
    min-width: 50%;
    padding-bottom: 5%;

}
article div a {
    text-decoration: none;
    color: white;
    transition: 500ms;
    transition-timing-function: ease-in-out;
    padding: 5px;
    border-radius: 10px;
}
article div .links:hover {
    text-decoration: none;
    color: white;
    background-color: rgba(172, 255, 47, 0.650);
    border-radius: 10px;
    padding: 5px;
}
.center {
    text-align: center;
    margin: 0px;
    padding: 0px;
}
.hyperlinks footer {
    font-size: 10px;
}
img {
    border-radius:  10px;
    margin: 2%;
    max-width: fit-content;
    max-width: 90%;
    max-height: 90%;
    transition: ease-in-out 500ms;
    filter: blur(3px);
}
img:hover {
    border-radius:  10px;
    margin: 2%;
    max-width: fit-content;
    max-width: 93%;
    max-height: 93%;
    filter: blur(1px);
    
}
a {
    padding: 1%;
}
label {
    color: white;
    font-size: 20px;
  }
  label ,input , button {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 20px;
  }

  input[type=text], input[type=password] , input[type=email] {
    width: 100%;
    padding: 12
  }
  input[type=text], input[type=password] , input[type=email] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 10px;
  }
  
  input[type=submit] {
    width: 100%;
    background-color: rgba(153, 205, 50, 0.05);
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: 1px solid ;
    border-color: rgba(139, 207, 38, 0.5);
    border-radius: 10px;
    transition: ease-in-out 500ms;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    color: greenyellow;
    border-color: yellowgreen;
    border-radius: 10px;
    transition: ease-in-out 500ms;
    background-color: rgba(0, 128, 0, 0.25);

  }
  form {
    border-radius: 5px;
    padding: 20px;
    width: 30%;
    margin: auto;
  }
  
  form p {
    color: black;
    font-size: 16px;
  }
  
  form a {
    color: greenyellow;
    font-size: 16px;
  }
  
button {
  padding: 5px;
  border: 2px;
  border-radius: 10px;
  background: inherit;
  transition: ease-in-out 500ms;

}
button:hover {
  padding: 5px;
  border: 2px;
  border-radius: 10px;
  background-color: rgba(0, 128, 0, 0.25);
}
button a:hover {
  color: greenyellow;
}
@media only screen and (max-width: 1000px) {
  nav ul {
    flex-direction: column;
  }
  article {
    flex-direction: column;
    justify-content: stretch;

  }
}