/* All of this junk was copied and pasted. Needs to be refactored and commented so I can understand it */

.links-home{
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: 1px solid rgba(252, 255, 255, 1); */
}

.blurb-container{
  /* border: 1px solid rgba(255, 0, 0, 1); */
  width: 100%;
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blurb{
  /* border: 1px solid rgba(255, 100, 100, 1); */
  /* width: 100%;
  height: 35vh; */
  font-size: 1.5em;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.links-container{
  /* border: 1px solid rgba(0, 255, 0, 1); */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.links-card{
  border: 1px solid rgba(200, 200, 255, 1);
  overflow: hidden;
  width: 400px;
  max-width: 100%;
  height: 100px;
  margin: 10px;
  border-radius: 20px;
}

.links-item-rename {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.links-item-rename .links-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.links-item-rename .links-image img {
  width: 100%;
  height: 100%;
  /* Auto resizes image to fit bounds of container */
  object-fit: cover;
  /* Centers image */
  object-position: 50% 50%;
  cursor: pointer;
  /* Animation */
  /* transition: .5s ease-in-out; */
  /* font-size: inherit; */
}

.links-card .links-card-text {
  /* width: 100%;
  height: 100%; */
  opacity: 1;
  z-index: 4;
  font-size: 1.5em;
  text-align: center;
  align-items: center;
  /* border: 1px solid rgba(100, 100, 255, 1); */
}

.links-link{
  /* border: 1px solid rgba(0, 0, 255, 1); */
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* border: 1px solid rgba(255, 255, 255, 1); */
  z-index: 10;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  min-height: 65vh;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5%;
}


.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .3);
}

.aboutcortland {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35vh;
  text-align: center;
  text-justify: center;
}

.link {
  width: 100%;
  height: 100%;

  z-index: 1;
}

body {
  color: cornsilk;
  background-color: black;
}

* {
  margin: 0;
  padding: 0;
  /* border: 1px solid rgba(255, 255, 255, .3); */
  font-family: 'Lato', sans-serif;
  box-sizing: border-box;
}


@media only screen and (max-width: 860px) {
  .grid-container {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 30px;
      padding: 5%;
  }
}

