*{
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
}

body{
    background-color: black;
    color: white;
}

.main_block{
    height: 800px;
    width: 1000px;
    background-color: rgba(255, 255, 255, 0);
    margin-top: 10px;
    border-style: groove;
    border-color: white;
    border-width: 20px;
}

.in_main{
    margin-top: 3px;
}

.pfp{
    border-radius: 10em;
    margin-top: 30px;
    height: 190px;

}

.intro{
    margin-left: 5em;
    margin-right: 5em;
}

.heart {
  height: 40px;
  transition: transform 0.3s ease;
}

.heart:hover {
  transform: scale(1.2);
}

.a_links{
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 2px 4px;
  overflow: hidden;    
  border-radius: 4px;
}

/* Sliding background */
.a_links::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.584);
  transition: left 0.3s ease;
  z-index: -1;
}

/* On hover, slide it in */
.a_links:hover::before {
  left: 0;
}

/*this is for the table*/
.archive{
    border-style: groove;
    border-color: white;
    border-width: 20px;
}

tr th{
    padding: 15px;
    background: black;
}

table{
    background-color: white;
}

.head_archive{
    font-size: x-large;
    color: rgb(255, 0, 0);
    background-color: rgba(255, 255, 255, 0.712);
}

a{
    color: white;
}