/* styles.css */
body {
    font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 800px;
    margin-top: 50px;
    text-align: center;
}

.container-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.navbar {
    padding: 15px 0;
    width: 100%;
}

.hero-img {
    max-width: 300px;
    width: 100%;
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #007bff;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: #0056b3;
}

.contact-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.img-small {
    width: 2in;
}

#footer {
    background: url('images/footer-texture.jpg') repeat;
    background-size: cover;
    padding: 15px 0;
    border-top: 3px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: auto;
    width: 100%;
}

#footer a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}
