html {
  height: 100vh;
}

body {
  height: 100vh;
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  margin: 0px;
}

a, a:visited {
  text-decoration: none;
  color: inherit;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.text-large {
  font-size: 2em;
  font-weight: normal;
  text-align: center;
}

.text-medium {
  font-size: 1em;
  font-weight: normal;
  text-align: center;
}

.w-half {
  max-width: 50%;
}

.twd-grey {
  color: #8C8C8C !important;
}

.desktop {
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.desktop .top-bar {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.desktop .name-container {
  grid-column: 1;
  justify-self: start;
}

.desktop .new-website {
  grid-column: 2;
  justify-self: center;
}

.desktop .logo-container {
  grid-column: 3;
  justify-self: end;
}

.desktop .centre-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: auto;
  justify-content: center;
  align-items: center;
}

.desktop .centre-content img {
  height: 50vh;
  width: 70vh;
  margin: 8px;
  border-radius: 1px;
}

.desktop .centre-content .carousel {
  width: 70vh;
}

.desktop .bottom-bar {
  margin-top: 38px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.desktop .link-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 18%;
  gap: 8px;
}

.desktop .link-container .about {
  grid-column: 1;
  justify-self: end;
}

.desktop .link-container .contact {
  grid-column: 2;
  justify-self: center;
}

.desktop .link-container .email {
  grid-column: 3;
  justify-self: start;
}

.logo-container img {
  height: 35px;
  width: 35px;
}

.desktop {
  display: none;
}

@media (min-width: 768px) {
  .desktop {
    display: flex;
  }
}

.mobile {
  display: none;
}

@media (max-width: 768px) {
  .mobile {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 25px;
  }
}

.mobile .top-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%; 
  justify-content: center;
  align-items: center;
}

.mobile .name-container {
  grid-column: 1;
  justify-self: start;
  align-items: center;
}

.mobile .nav-button {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
}

.mobile .centre-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: auto;
  justify-content: center;
  align-items: center;
}

.mobile .centre-content img {
  margin: 8px;
  border-radius: 1px;
}

.mobile .centre-content .carousel {
  width: 48vh;
}

.mobile .nav-list {
  display: flex;
  flex-direction: column; 
  align-items: center;
}

.mobile .nav-list a {
  margin: 3px;
}

.mobile .bottom-bar {
  padding-bottom: 65px;
  display: flex;
  justify-content: center;
  width: 100%;
}





.hidden {
  display: none !important;
}