* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

/* Star in top right corner */
.top-star {
  position: fixed;
  top: 2%;
  right: 3%;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  z-index: 10000;
  cursor: pointer !important;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
  pointer-events: auto !important;
}

.top-star a {
  text-decoration: none;
  color: inherit;
  cursor: pointer !important;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
  pointer-events: auto !important;
}

.top-star:hover,
.top-star a:hover {
  transform: rotate(72deg) scale(1.2) !important;
  text-shadow: 0 0 20px rgba(64, 255, 0, 0.7) !important;
}

/* Main info container */
.info {
  width: 100%;
  max-width: 1200px;
  padding: 10% 2rem 0 2rem;
  margin-bottom: 120px;
}

/* Contact section */
.contact-section {
  margin-bottom: 3rem;
}

.contact-header {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.6em;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-column h2 {
  font-family: "M PLUS 1p", sans-serif;
  font-size: large;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

.contact-column ul {
  font-family: monospace;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.contact-column ul li {
  text-align: left;
  padding: 0;
  margin: 0;
  text-indent: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-column ul li a {
  text-align: left;
  padding: 0;
  margin: 0;
  text-indent: 0;
  display: block;
  text-decoration: none;
  color: black;
}

.contact-column ul li a:hover {
  text-decoration: underline;
}

/* Press section */
.press-section h1 {
  font-family: "M PLUS 1p", sans-serif;
  font-size: large;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

.press-section ul {
  font-family: monospace;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.press-section ul li {
  text-align: left;
  padding: 0;
  margin: 0 0 0.5rem 0;
  text-indent: 0;
  display: block;
}

.press-section ul li a {
  text-align: left;
  padding: 0;
  margin: 0;
  text-indent: 0;
  display: block;
  text-decoration: none;
  color: black;
}

.press-section ul li a:hover {
  text-decoration: underline;
}

/* Name banner */
.name-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 5rem;
  background-color: transparent;
  padding: 10px 0;
  z-index: 9999;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  overflow: visible;
  pointer-events: none;
}

.name-banner span {
  display: inline-block;
}

.name-banner .space {
  min-width: 5%;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .info {
    padding: 10% 1rem 0 1rem;
  }
  
  .contact-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-header {
    font-size: 0.8rem;
    margin: 1.5rem 0 0.8rem 0;
  }
  
  .contact-column h2 {
    font-size: 1rem;
    font-weight: 300;
  }
  
  .contact-column ul {
    font-size: 0.9rem;
  }
  
  .contact-column ul li {
    font-size: 0.9rem;
  }
  
  .press-section h1 {
    font-size: 1rem;
    font-weight: 300;
  }
  
  .press-section ul {
    font-size: 0.9rem;
  }
  
  .press-section ul li {
    font-size: 0.5rem;
  }
  
  .name-banner {
    font-size: 2.5rem;
    padding: 5px 0;
  }
}

@media screen and (max-width: 480px) {
  .info {
    padding: 20% 2rem 0 2rem;
    margin-bottom: 100px;
  }
  
  .contact-section {
    margin-bottom: 1.5rem;
  }
  
  .contact-columns {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-header {
    font-size: 0.7rem;
    margin: 0 0 1rem 0;
  }
  
  .contact-column {
    margin-bottom: 3rem;
  }
  .contact-column h2 {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }
  
  .contact-column ul {
    font-size: 0.8rem;
  }
  
  .contact-column ul li {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }
  
  .press-section h1 {
    font-size: 0.6rem;
    margin: 0 0 0.3rem 0;
  }
  
  .press-section ul {
    font-size: 0.6rem;
  }
  
  .press-section ul li {
    font-size: 1rem;
    margin: 0 0 0.1rem 0;
  }
  
  .name-banner {
    font-size: 2rem !important;
    padding: 8px 5px;
    overflow: hidden;
    white-space: nowrap;
  }
  
  .name-banner span {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .name-banner .space {
    min-width: 3% !important;
  }
}