body {
    font-family: "Inter", Tahoma, sans-serif;
    font-optical-sizing: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: grayscale;
    color: white;
    background: linear-gradient(-45deg, #ee7752, #b63768, #23a6d5, #303030);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

h1 {
    font-size: 5vw; /* Default size */
}

p {
    font-size: 3vw; /* Default size */
}

@media (min-width: 600px) {
    h1 {
        font-size: 5vw;
    }

    p {
        font-size: 3vw;
    }
}

.container {
    display: grid; 
    grid-auto-columns: 1fr; 
    grid-auto-rows: 1fr; 
    grid-template-columns: 1.0fr 1.0fr; 
    grid-template-rows: 1fr 1fr 1fr; 
    gap: 5px 0px; 
    grid-template-areas: 
      "constructHead constructHead"
      "constructBody constructBody"
      "linkedinLink githubLink"; 
    align-content: center; 
    justify-items: center; 
    align-items: center; 
    text-align: center;
  }
  .constructBody {
    grid-area: constructBody; 
    width: 100%; 
    height: 100%; 
  }
  .constructHead {
    grid-area: constructHead; 
    width: 100%; 
    height: 100%; 
  }
  .linkedinLink {
    grid-area: linkedinLink; 
    width: 100%; 
    height: 100%; 
  }
  .githubLink {
    grid-area: githubLink; 
    width: 100%; 
    height: 100%; 
  }