.header {
  width: 100%;
  /* height: 96px; */
  background-color: #fff;
  padding: 11px 0;
}

.container {
  max-width: 1800px;
  /* height: 100%; */
  margin: 0 auto;
  padding: 0 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.titleLink {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  font-size: 1.5em;
    line-height: 1.25;
    font-weight: 900;
}

.title {
  color: #262F40;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.025rem;
  width: calc(100% + 0.025rem);
 
}

.twitterButton {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.twitterButton:hover {
  transform: scale(1.05);
}

.twitterButton:active {
  transform: scale(0.95);
}

.iconWrapper {
  width: 34.8px;
  height: 34.8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.twitterIcon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .title {
    font-size: 20px;
    line-height: 35px;
  }
}

