:root {
  --font-color: #444;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--font-color);
}

.logo svg {
  fill: var(--font-color);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.name {
  fill: var(--font-color);
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.divider {
  content: " ";
  height: .25em;
  background-color: var(--font-color);
  width:75vw;
  margin-bottom: 1em;
  margin-top: 1em;
}

.description {
  font-family: 'Estonia', sans-serif;
  font-size: 2em;
  margin-bottom: 25px;
  text-align: center;
  padding-right: 2em;
  padding-left: 2em;
}

.link {
  display: flex;
  align-items: center;
  font-family: 'Estonia', sans-serif;
  font-size: 2.5em;
  color: #444;
  text-decoration: none;
}

.link-container {
  border: 2px solid white;
  transition: border-color .5s;
  border-radius: 1px;
}

.link-container:hover {
  border-color: var(--font-color);
  cursor: pointer;
}

.icon {
  width: 1em;
  height: 1em;
  margin-right: .25em;
  fill: var(--font-color);
}

.links {
  display: flex;
  flex-direction: column;
  max-width: 75vw;
  justify-content: space-between;
}

.links link {
  margin-bottom: .125em;
}

.svg-title {
  height: .6em;
  width: auto;
  fill: var(--font-color);
}

.svg-desc {
  height: 1.25em;
  width: auto;
  fill: var(--font-color);
}

.description-small-screen {
  display: none;
}

.svg-desc-small-screen {
  height: 3em;
  width: auto;
  fill: var(--font-color);
}

@media screen and (max-width: 960px) {
  .description-large-screen {
    display: none;
  }

  .description-small-screen {
    display: initial;
  }
}