:root {
    --bs-primary: #306bac;
    --bs-light: #FFFCF9;
    --bs-info: #6CD4FF;
}

html, body {
    height: 100%;
    margin: 0;

}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    min-height: calc(100vh - 120px);
    padding-bottom: 20px;
}

.container-prov {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

}

img {
    max-width: 100%;
    height: auto;
}

.zoom-effect {
    animation: zoom-in-zoom-out 8s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

.bottom-title {
    width: 100%;
    text-align: center;
    color: var(--bs-light);
    background-color: var(--bs-primary);
    padding-top: 2rem;
}

h1 {
    text-transform: uppercase;
}
h1 small {
    display: block;
    color: #FFF9FB;
    font-size: 0.6em;
    padding: 2rem;
}
