@font-face {
  font-family: 'CustomFont';
  src: url('xxx.ttf') format('truetype');
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  font-family: 'CustomFont', sans-serif;
}
.logo-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 400px;
}
.container {  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  
  text-align: center;
  box-sizing: border-box;
  overflow: hidden
  ;
}

.logo-container video {  
  height: auto;  
  position: relative;
  left: -20px;
}

.tagline {
  display: flex;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 2.4em;
  margin-bottom: 100px;
}

.tagline .dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 0;
}

.spacer {
  height: 100px;
}

.email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  right: 0;
  bottom: 15px;
  width: 100%;
  font-size: 2.4rem;
}

.email a {
  color: #000;
  text-decoration: none;  
}

.email .bar {
  display: inline-block;
  width: 60px;
  height: 10px;
  background: #000;
}

#bar1{
  width: 220px;
}

#bar1{
  width: 150px;
}

@media (max-width: 600px) {
  .logo-container video {
    width: 180% !important;
  }

  #bar1 {
    width: 60px;
  }

  #bar2{
    width: 40px;
  }

  .tagline, .email {
    font-size: 1rem;
  }

  .tagline .dot {
    width: 10px;
    height: 10px;    
  }
}
