*{
  padding: 0;
  margin: 0;
}

:root{
  --background: #0A0A0A;
  --foreground: #1B1B1B;
  --primary: #D3E97A;
}

body{
  background: var(--background);
  color: #F1F1F1;
  line-height: 150%;
  font-family: "Inter", serif;
}

a{
  color: var(--primary);
  text-decoration: none;
}

.container{
  width: 80%;
  max-width: 800px;
  margin: 1rem auto;
  background: var(--foreground);
  border-radius: 16px;
  padding: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.container img{
  width: 100%;
  border-radius: 12px;
}

.name{
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  margin-top: .5rem;
}

.contact{
  font-size: 20px;
}

.socials{
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.innerContainer{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.time{
  width: 250px;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  background: var(--background);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  height: 75.0px;
  margin: 0 auto;
  color: var(--primary);
}

.currentTime{
  font-size: 32px;
  font-family: "Orbitron", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

@media (min-width: 480px){
  .container{
    flex-direction: row;
  }
  
  .innerContainer{
    width: 50%;
  }
  
  .container{
    margin-top: 200px;
  }
}