/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');*/



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #dddddd;
}

img {
  max-width: 100%;
}

h1,
h2 {
  margin-bottom: 15px;
}

a {
  color: hotpink;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  justify-content: center;
  align-content: space-space-between;
  flex-wrap: wrap;
}

.navbar {
  background: #3474e6;
  color: #fff;
  height: 60px;
  li {
  float: left;
  border-right:1px solid #bbb;
  border-right: none;
  }
}

.navbar .logo {
  font-size: x-large;
  font-weight: bold;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.navbar a:hover {
  color: lightblue;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar ul {
  display: flex;
  list-style-type: none;
}

.navbar ul li {
  margin-left: 20px;
}

.header {
  background-color: #0151cc;
  color: #fff;
  min-height: 30px;
}

.header h1 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}

.header img {
  max-width: 400px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.boxes .container {
  display: flex;
  justify-content: space-between;
  color: #5f5;
}

.boxes a:hover {
  color: lightblue;
}

.box {
  flex: 1;
  background: #0a51cc;
  color: #fff;
  border-radius: 2px;
  margin: 20px 10px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
}

.box i {
  margin-right: 0px;
}

.break {
  flex-basis: 100%;
  height: 0;
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    padding-top: 20px;
    text-align: center;
  }

  .boxes .container {
    display: block;
    text-align: left;
  }
}

@media (max-width: 476px) {
  .header .container {
    flex-direction: column;
    padding-top: 20px;
    text-align: center;
  }

  .boxes .container {
    display: block;
    text-align: left;
  }
}
