html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    color: #000000;
    background-color: #0072C6;
    margin: 0;
    margin-bottom: 60px;
}

#container {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: xx-large;
}

a img {
    border: none;
}


.services {
    padding: 20px;
    text-align: center;
}

.container-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    border: 2px solid #474545;
    border-radius: 8px;
    width: 250px;
    padding: 20px;
    box-shadow: 2px 2px 12px gray;
    transition: transform 0.2s;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 2px 4px 15px rgba(0,0,0,0.2);
    }
