@import url(https://fonts.googleapis.com/css?family=Fira+Sans);

body,
html {
    background-image: url('./image/forest.jpg');
    margin: 0;
    padding: 0;
    font-family: "Fira Sans", sans-serif;
    text-align: center;
    background: #ECF0F1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    text-align: center;
    line-height: 2;
}

.canvas {
    width: 80%;
    max-width: 600px;
    height: auto;
    background-color: white;
    margin: 0 auto;
    box-shadow: 0px 0px 20px 1px #bbb;
}

img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}
.logo-container {
    max-width: 100%;
    text-align: center; /* Centra el logo horizontalmente */
}
nav {
    text-align: center;
    line-height: 2;
    padding: 10px;
}

nav a.blue {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: #854c2f;
    border-radius: 10px;
    color: white;
    text-decoration: none;
}

a {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: #3498DB;
    border-radius: 10px;
    color: white;
    text-decoration: none;
}

a.blue {
    background-color: #F2385A;
    box-shadow: 0px 15px 0px 0px #e0e4e0, 0px 0px 20px 0px #bbb;
    transition: all 0.2s;
}

.button1,
.button2 {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: #3498DB;
    border-radius: 10px;
    color: white;
    text-decoration: none;
}


.button1:active,
.button2:active {
    top: 108px;
    box-shadow: 0px 7px 0px 0px #f02046;
}

.button1 {
    background-color: #F2385A;
}

.button2 {
    box-shadow: 0px 15px 0px 0px #258cd1;
}

.button2:active {
    box-shadow: 0px 7px 0px 0px #258cd1;
}

@media screen and (max-width: 600px) {
    a.blue {
        height: auto;
        max-width: auto;
        padding: 10px;
        font-size: 16px;
    }
}
@media screen and (max-width: 600px) {
    img {
        max-width: 80%; /* Ajusta el tamaño del logo para pantallas más pequeñas */
    }
}