@import"./fonts.css";
@import"./animations.css";

:root{
    --background-colour: #54555a;
    --title-colour: #ff1c60;
    --body-colour: #ffffff;
    --description-colour: #a9a9a9;
    --border: 2px dotted var(--title-colour);
    --tech_border: 1px dashed #474747;
    --display-font:"Avant Garde", sans-serif;
    --body-font: "IBM Plex Mono", monospace;
    --description-font: arial;
}

body {
    background-color: var(--background-colour);
    background-image: url('images/background.png');
    background-repeat: repeat;
    background-size: 54rem;
    background-position: center;
    background-blend-mode: multiply;
    color: var(--title-colour);
    font-family: var(--body-font);
}

img {
    max-width: 100%;
    height: auto;
    border: var(--border);
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgb(0, 0, 0);
}

.description {
    font-family: var(--description-font);
    font-weight: 300;
    font-style: italic;
    font-size: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    color: var(--description-colour);
}

.welcome {
    display: flex;
     flex-direction: column;
     justify-content: center;
      align-items: center;
      height: 100vh;
      font-family: var(--display-font);
      font-weight: 400;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
 }

 .hellobilly {
    text-align: center;
    font-size: 200px;
    font-family: var(--display-font);
    font-weight: 700;
    -webkit-text-stroke: 2px var(--title-colour);
    background-image: linear-gradient(45deg, #5BCEFA, #F5A9B8, #F5A9B8, #ffffff, #F5A9B8, #F5A9B8, #5BCEFA);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: homosexual 5s linear infinite;
 }

 .cursor {
    display: inline-block;
    width: calc(0.4268em + 0.63px); height: calc(0.7378em + 1.44px);
    background: var(--body-colour);
    vertical-align: center;
    animation: led-blink 1s step-end infinite;
    margin-left: 2px;
 }

 .content {
    color: var(--body-colour);
    font-family: var(--body-font);
    background-color: #10101063;;
    font-size: 1rem;
    padding: 1rem;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
    border: var(--tech_border);
    box-shadow: 0 0 20px rgb(0, 0, 0);
    border-radius: 0.5rem;
 }
