* {
  padding: 0;
  margin: 0;
  font-family: "Times New Roman", Times, serif;
}
.container {
  background: #000;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
  padding: 20px 0;
}
.logo {
  width: 40px;
}

ul li {
  display: inline-block;
}
ul li a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
}
.content .text {
  width: 40%;
  color: #fff;
}

.content .text h2 {
  font-size: 40 px;
  text-transform: uppercase;
}
.content .text p {
  font-size: 18px;
  margin: 20px 0;
}
.content .text a {
  text-decoration: none;
  background: #fff;
  color: #000;
  padding: 8px 15px;
  border-radius: 25px;
}
.content .image {
  width: 30%;
}
.content .image img {
  width: 180px;
}
.icons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.icons img {
  width: 40px;
  transition: 0.5s;
  cursor: pointer;
}
.icons img:hover {
  transform: scale(1.2);
}
