* {box-sizing: border-box}

body {
    width: 100vw;
    height: auto;
    margin: auto;
    background-color: #050a30;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    
  }
.header{
background-color: gray;
text-decoration-color: gray;
color: gray;
margin-top: 5px;
margin-bottom: 5px;
padding: 2px;
  }
.content{
    background-color: white;
    color: #050a30;
    border-left: white solid 10px;
    border-right: white solid 10px;
    
  }

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    
  }


.imgcenter {
    display: flex;
    align-self: center;
    max-width: 50%;
    height:auto;
    margin:auto ;
    padding:0;
    
}
.img1{
    display:block;
    max-width: 100%;
    height: auto;
    margin: auto;
}
.img2{
    display: flex;
    justify-content: center;
    max-width: 25%;
    height:auto;
    padding:0;
}

.benefits-section{

    justify-content: center; 
   
    
    
}
.secondblock{
    background-color: gray;
}
#privacy-section{
    justify-content: left;
    
}
#pricing-section{
    justify-content: left;
    
}
footer{
    background-color: #050a30;
    color:white;
    margin-top: 5px;
    margin-bottom: 5px;
}

main {
    justify-content: center;
}



.navbar {
  width: 100%;
  background-color: #555;
  overflow: auto;
  
}

.navbar a {
  float: left;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 17px;
  width: 33%; /* Four links of equal widths */
  text-align: center;
}

.navbar a:hover {
  background-color: orangered;
}

.navbar a.active {
  background-color: orangered;
}

@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: left;
  }
}