html {
  height: 100%;
}
@keyframes animatedGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
    background: linear-gradient(270deg, #000000, #150050, #3F0071);
    animation: animatedGradient 30s ease infinite;
    background-size: 600% 600%;
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

h1 {
    color: #9370DB;
}

.header h2 {
    color: #BA55D3;
}

.header h3 {
    color: rgba(229, 36, 255, 1);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 25px 25px;
  background-position: -20px -20px;
  background-repeat: repeat;
  animation: animStars 9s linear infinite;
  z-index: -1;
}

@keyframes animStars {
  from {
    background-position: 0 0;
    opacity: 0;
  }
  50% {
      background-position: 20px 20px;
      opacity: 1;
  }
  to {
    background-position: 40px 40px;
    opacity: 0;
  }
}
hr{
    clear:both;
    display:block;
    background-color: #FFA500;
}
textarea {
    background-color: #000;
    color: #fff;
    border: 2px solid #333;
    padding: 10px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1) inset;
    font-family: monospace;
    font-size: 16px;
    resize: both;
    outline: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.navbar {
  clear: both;
  overflow: hidden;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0px 1rem 0px;
}

.p0 {
  padding: 0px 1rem 0px;
}

.block .blc {
  font-size: 16px;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  transition: color 0.3s;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover, .block .blc:hover {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.navbar a .right {
  float: right;
}

.menu {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  min-width: 50px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-left: 70px;
}

.menu a {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s, color 0.3s;
}

.menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 1);
}

.block:hover .menu {
  display: block;
}

.header{
	margin: 20px;
	text-align: center;
	font-family: serif;
}
.content-main{
	background-color: rgba(0,0,0,0.5);
	color: #FFE4E1;
	font-family: 'Montserrat Alternates', sans-serif;
}
.footer{
	color: #FFE4E1;
	background-color: rgba(112, 128, 144, 0.5);
}
.link{
	color: yellow;
}
.link:hover{
	color: red;
}
.avatar{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
}
.avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.button {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(29, 29, 29, 0.8) 100%);
    border: 2px solid rgba(229, 36, 255, 1);
    border-radius: 35px;
    color: rgba(229, 36, 255, 1);
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.button:hover {
    background: rgba(229, 36, 255, 0.9);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}