body {
  background-color: rgb(0, 0, 0);
}
/* .container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    font-family: 'Courier New', Courier, monospace;
    color: #fff;

}
#time{
    color: #fff;
} */
* {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
a{
    color: #fff;
}
.main{
    height: 100vh;
}
.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100px;
  background-color: rgba(53, 53, 53, 0.377);
}
nav ul {
  display: flex;
  justify-content: space-around;
}
nav ul li {
  margin: 20px;
}
nav ul li a {
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}
.brand h2 {
  color: rgb(104, 103, 103);
  letter-spacing: 0.3rem;
}
.sep {
  color: #fff;
}
.hero__content {
    display: flex;
    flex-direction: row;
    justify-content: end;
    height: 400px;
    padding: 40px;
    margin: 50px;
}
.hero__content .image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  .cover__img{
    width: 300px;
    object-fit: contain;
    opacity: .5;
}
.hero__content .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  
}
.hero__content .content h2 {
    color: rgb(255, 255, 255);
    margin: 20px;
    letter-spacing: .3rem;
    font-weight: lighter;
    font-family: monospace;
}
.hero__content .content p {
    color: #fff;
    max-width: 370px;
    line-height: 1.2rem;
    letter-spacing: .1rem;
    font-family: monospace;
}
.btn{
    margin: 20px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    letter-spacing: .2rem;
    cursor: pointer;
}
@media only screen and (max-width: 600px) {
    .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: end;
        height: 400px;
        padding: 40px;
        margin: 50px;
    }
    .cover__img {
        width: 252px;
        object-fit: contain;
        opacity: .5;
    }
    .hero__content .content p {
        width: 286px;
        margin-left: 100px;
        margin-top: 20px;
        max-width: 370px;
    }
    
  }