* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #F4F6F8;
    color: #1F2A44;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #1F2A44;
}

nav a.nav-link {
    color: #1F2A44;
    font-weight: 500;
}

nav a.nav-link:hover {
    color: #0077B6;
}

.hero {
    min-height: 100vh;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero a.btn-primary {
    background-color: #0077B6;
    border: none;
}

.hero a.btn-primary:hover {
    background-color: #005f91;
}

.sobre-mi-section {
    background-color: #ffffff;
    color: #1F2A44;
    padding: 5rem 0;
}

.sobre-mi-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sobre-mi-section p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.contacto-section {
    background-color: #f8f9fa;
    color: #1F2A44;
}
  
.contacto-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.contacto-section .form-control {
    border-radius: 0.25rem;
}

.contacto-section .btn-primary {
    background-color: #0077B6;
    border: none;
}

.contacto-section .btn-primary:hover {
    background-color: #005f91;
}

footer {
    background-color: #1F2A44;
    color: #ffffff;
    text-align: center;
    padding: 2rem 1rem;
}

.socials a {
    color: #ffffff;
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

.socials a:hover {
    color: #0077B6;
}
