*{
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}
.container{
  background-color: black;
  min-height: 100vh;
  width: 100%;
}

header{
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: auto;  
  align-items: center;
  padding: 20px 0;
}

.logo{
  width: 50px;
}
li{
  display: inline-block; /* inline-block removes list-style */
}
ul li a{
  color: white;
  text-decoration: none;
  font-size: 18px;
  margin: 0 10px;
}

.content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
}

.text{
  width: 50%;
  color: white ;
}

.text a{
  text-decoration: none;
  font-size: 18px;
  background-color: white;
  color: black;
  padding: 7px;
  border-radius: 15px;
}
.text p {
  margin: 20px 0;
}

.text h2 {
  font-size: 50px;
  text-transform: uppercase;
}

.img{
  width: 30%;
}
.img img{
  width: 80%;
  margin-left: 30px;
}
.icons{
  text-align: center;
}
.icons img{
  width: 50px;
  transition: 0.5s;
  cursor: pointer;
}

.icons img:hover{
  transform: scale(1.2);
}