@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: "Robot", sans-serif;
}

a {
  text-decoration: none;
}

header {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background: url("/images/header.jpg");
  background-size: cover;
  background-position: center;
}

header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60vh;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

nav,
.header-bottom {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
}

.logo a {
  color: #F2F2F2;
  font-size: 2rem;
}

.btn-sign-up {
  padding: 0.7rem 2rem;
  background: #000000;
  color: #ffffff;
  font-weight: 500;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-sign-up:hover {
  background: #ffffff;
  color: #000000;
}

.header-title {
  margin: auto auto;
  font-size: 5rem;
  position: relative;
  letter-spacing: 2px;
}

.today-date {
  font-size: 2rem;
  font-weight: 500;
}

.today-date span {
  font-size: 1.5rem;
}

.social-media {
  display: flex;
  list-style: none;
  width: 350px;
  justify-content: space-between;
  align-items: center;
}

.social-media a {
  color: #ffffff;
}