@import "_reset.css";

::selection {
  color: rgb(205,0,0);
}

body {
  background-color: black;
}

.flex-container {
  display: flex;
}

.flex-item {
  position: absolute;
}

#about {
  transform: rotate(7deg);
}

#contact {
  transform: rotate(-5deg);
}

p {
  padding: 0;
  margin: 0;
  font-size: 44px;
  font-family: 'Helvetica', sans-serif;
  font-weight: bold;
  text-align: center;
  transition: text-shadow 0.1s ease-in-out, scale 0.15s ease-in-out; 
}

.flex-item p:hover {
  color: rgba(255, 255, 255, 1);
  scale: 125%;
}

a {
  text-decoration: none;
  all: unset;
}

.underline {
  text-decoration: underline;
}

#as {
  font-family: monospace;
  font-size: 16px;
}

/** Responsive min **/
@media (max-width: 600px) {
  p {
    font-size: 18px;
  }
  #as {
    font-size: 10px !important;
  }
}

/** Responsive mid**/
@media (min-width: 601px) and (max-width: 1024px) {
  p {
    font-size: 32px;
  }
  #as {
    font-size: 12px !important;
  }
}