@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'poppins',sans-serif;
  color: #fff;
  background-image: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  line-height: 1.5;
  font-size: 16px;
}

img{
  max-width: 100%;
}

h1,h2{
  margin-bottom: 15px;
}

ul li{
  list-style: none;
}

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

#navbar{
  height: 60px;
}


#navbar a{
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

#navbar a:hover{
  opacity: 0.6;
}


#navbar h1{
  font-size: x-large;
  font-weight: bold;
  margin: 0;
}


#navbar .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

#navbar ul{
  display: flex;
  align-items: center;
}

#navbar ul li{
  margin-left: 20px;
}


#header .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header img{
  max-width: 400px;
}

#header .header-info h1{
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
  transition: color 0.4s;
}

#boxes .container{
  display: flex;
  justify-content: space-between;
}

.box{
  flex: 1;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 20px 10px;
  box-shadow: 0 5px 5px black;
}

.box h1:hover{
  color: coral;
}

.box i{
  margin-right: 5px;
}

@media(max-width: 768px){
  #header .container{
    flex-direction: column;
    padding-top: 30px;
    text-align: center;
  }
  
  #boxes .container{
    flex-direction: column;
    text-align: center;
  }
}