@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root{
  /*  --primary-color: #047aed;*/
    
    --primary-color: rgb(97, 103, 129);

}
* {
    box-sizing: border-box;
    margin: 0;
}
body{
    font-family: 'Lato',sans-serif;
    color: white;
    line-height: 1.6;
    background-color:var(--primary-color);
    padding: 3px;
}
.navbar{
    background-color:var(--primary-color);
    color: #fff;
    height: 70px;
}
.navbar ul{
    display: flex;
}
.navbar a{
    color: #fff;
    padding: 3px;
    margin: 5px;
}
.navbar a:hover{
    border-bottom: 3px #110909 solid;
}
.navbar .flex{
    justify-content: space-between;
}
img{
    padding:38px;
    max-width: 100%;
    height: auto;
}
h1{
    text-align: center;
    align-items: center;
    margin: 5px;
}
h2{
    color: rgb(219, 164, 144);

    padding-left: 10px;
}
h3{
    color: rgb(219, 164, 144);
    margin-top: 20px;
    line-height: 2.0;
}
h5{
    color: rgb(247, 148, 112);
    margin-top: 5px;
    font-weight: bold;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}
.navbar {
    background: var(--primary-color);
    color: #fff;
    height: 80px;
    margin: 15px;
  }
.navbar a{  color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
  }
  
  navbar a:hover{
    border-bottom: 2px #fff solid;
}
.navbar .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 15px;
}
.navbar ul {
    display: flex;
}
  .navbar ul li {
    margin-left: 20px;
}

  .header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    padding: 15px;
    align-items: center;
}
ul{ display: flex;
    list-style: none;
}
.showcase-text{
    height: 700px;
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
    padding: 10px;
}
.boxes .container {
    display: flex;
    justify-content: space-between;
  }
  
  .box {
    flex: 1;
    background: #2e3238;
    color: #fff;
    border-radius: 10px;
    margin: 20px 10px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
    margin-top: 35px;
  }
  
  .box i {
    margin-right: 10px;
  }
.main-footer{
    background: #333;
    color:#fff;
    text-align: center;
    margin: 20px;
    padding: 30px;
}

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