* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 10vh;
}

body {
    background: linear-gradient(to bottom right, #011d71 0%, #121212 100%);
}

.image {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.paragraph {
    text-align: left;
    margin-top: 20px;
}

i {
    font-size: 8vh;
}

.icon-bar i {
    transition: all 0.3s;
    margin: 0 2.5vw;
}

.icon-bar i:hover {
    opacity: 0.5;
    transform: scale(1.2);
    color: #0033cc;
}

.icon-bar {
    display: flex;
    justify-content: center;
}

.icon-bar a {
    color: inherit;
}

.profile-image {
    width: 20vw;
    height: auto;
}

.image-text {
    display: flex;
    align-items: center;
    gap: 6vw;
}

.paragraph-text {
    text-align: left;
    font-size: 1.2em;
    color: white;
    width: 20vw;
}

.header-text {
    text-align: left;
    
    font-size: 28pt;
    color: #4abdff;
    width: 20vw;
}

.vertical-container {
    display: flex;
    flex-direction: column;
    gap: 5vh;
  }

  h1::before {  
    transform: scaleX(0);
    transform-origin: bottom right;
  }
  
  h1:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  h1::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    inset: 0 0 0 0;
    background: hsl(0, 0%, 0%);
    z-index: -1;
    transition: transform .3s ease;
  }
  
  h1 {
    position: relative;
    font-size: 5rem;
  }
  
  .trail { /* className for the trail elements */
    position: absolute;
    height: 10px; width: 10px;
    border-radius: 6px;
    background: #4abdff;
  }



  