
html {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body{
     margin: 0;
     padding: 0;
     font-family: 'Helvetica', Arial, sans-serif;
     line-height: 1.6;
     width: 100vw;
     overflow-x: hidden;
}

.container {
  max-width: 1536px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: 3s;
  overflow-x: hidden;
}

/* Footer Section */
 .footer {
     background-color: #2e4a62;
     color: #fff;
     padding: 20px;
     text-align: center;
}
 .footer-content {
     display: grid;
     grid-template-columns: 1fr auto 1fr;
     justify-content: space-between;
     align-items: center;
     margin: auto auto;
}
 .footer-logo {
     font-size: 5vh;
     font-weight: bold;
     font-family: cursive;

}
 .footer-contact p {
     margin: 5px 0;
}
 .footer-social a {
     color: #ffd700;
     text-decoration: none;
     margin: 0 8px;
}
 .footer-content a {
    color: #ffd700;
     text-decoration: none;
     margin: 0 8px;
 }
 .footer-social a:hover {
     text-decoration: underline;
}
.underline{
    width: 5vw;
}
.userCss {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}


/* xl */
@media (max-width: 1280px) {
  .container {
    max-width: 100%;
  }
}

/* lg */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
  }
  footer {
     background-color: #2e4a62;
     color: #fff;
     padding: 20px;
     text-align: center;
  }
}

/* md */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
}



/* sm */
@media (max-width: 640px) {
    .container {
        max-width: 100%;
    }
    .footer-content {
         display: flex;
         justify-content: center;
         flex-direction: column;
         align-items: center;
         margin: 0 auto;
    }
}

/* xs iphone*/
@media (max-width: 475px) {
    .container {
        max-width: 100%;
    }
    .footer-content {
         display: flex;
         justify-content: center;
         flex-direction: column;
         align-items: center;
         margin: 0 auto;
    }

}

