body{
    margin: 20px;
    padding: 0px;
    background-color: #0A192F;
    font-family: Roboto,sans-serif;
    line-height: 1.5;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.logo {
    font-family: Roboto,sans-serif;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    font-size: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.address {
    font-family: Roboto,sans-serif;
    color: #ffffff;
    display: flex;
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
  
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
  
.card {
    width: 28rem;
    height: 250px;
    margin: 20px;
}

.card-body {
    width: 100%;
    height: 200px;
    background-color: #172A45;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 38px;
    text-align: center;
}
  
.card-title,
.card-text {
    color: #fff;
}
  
@media (max-width: 768px) {
    .card {
      margin-bottom: 30px;
    }
}
  
    
.social-icons {
    position: relative;
    left: 50px;
    margin-top: 20px;
    font-size: 25px;
    transform: scale(1.2);
    color: #ffffff87;
}

.social-icons a {
    color: #ffffff87;
}

.social-icons a:hover i {
    transform: scale(1.2);
    color: #ffffff;
}

.social-icons i {
    margin-right: 20px;
}