* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "JetBrains Mono", sans-serif;
}

html {
  scroll-behavior: smooth;
  background: linear-gradient(#0400fa, #6b86ff)
}

.white
{
  color: rgb(255, 255, 255);
  font-family: "Poppins", serif;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200vh;
  gap: 2rem;
  margin: 0;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, #000000 1px, transparent 1px),
    linear-gradient(to bottom, #000000 1px, transparent 1px);
}

header,
main,
footer {
  text-align: center;
}

a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--purple);
}

a:hover {
  opacity: 0.9;
}

.pfp
{
  height: 150px;
  width: 150px;
  border-radius: 100px;
}

button
{
  background-color: #78abe6;
  border-radius: 5px;
  width: 90vw;
  height: 6vh;
  max-width: 250px;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(41, 41, 41);
  box-shadow: 4px 6px rgb(255, 255, 255);
  margin: 1vh;
}

.non-selectable {
    -webkit-touch-callout: none;  
    -webkit-user-select: none;    
    -khtml-user-select: none;     
    -moz-user-select: none;       
    -ms-user-select: none;        
    user-select: none;            
}

.card {
  --border-radius: 0.75rem;
  --primary-color: #7257fa;
  --secondary-color: #3c3852;
  width: 210px;
  font-family: "Arial";
  padding: 1rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  background: #f1f1f3;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
  position: relative;
}

.card > * + * {
  margin-top: 1.1em;
}

.card .card__content {
  color: var(--secondary-color);
  font-size: 0.86rem;
}

.card .card__title {
  padding: 0;
  font-size: 1.3rem;
  font-weight: bold;
}

.card .card__date {
  color: #6e6b80;
  font-size: 0.8rem;
}

.card .card__arrow {
  position: absolute;
  background: var(--primary-color);
  padding: 0.4rem;
  border-top-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  bottom: 0;
  right: 0;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card svg {
  transition: 0.2s;
}

/* hover */
.card:hover .card__title {
  color: var(--primary-color);
  text-decoration: underline;
}

.card:hover .card__arrow {
  background: #111;
}

.card:hover .card__arrow svg {
  transform: translateX(3px);
}