*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    max-width: 500px;
    margin: auto;
    font-family: "nunito", sans-serif;
}

main{
    background-color: #1a1a1a;
    background-image: url("img/background.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

img{
    animation: aparecer 1s ease forwards;
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.con-cab{
    width: 100%;
    background-image: url("img/cabecera.svg");
    background-repeat: no-repeat;
    background-size: contain;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
}

.con-cab img{
    width: 85%;
}

.con-inf p{
    font-size: 0.8rem;
    color: white;
    padding: 15px 35px;
    text-align: justify;
}

.con-btn{
    width: 100%;
    height: 5vh;
    background-color: #FFF59B;
    padding: 5px;
}

.con-btn a{
    text-align: center;
    text-decoration: none;
    color: black;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.con-btn a img{
    height: 50%;
}

.con-btns{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    gap: 15px;
    padding: 20px;
}

#caja img{
    height: 70%;
}

.con-v{
    width: 100%;
    display: flex;
    justify-content: center;
}

.con-btn2{
    margin-top: 30px;
    width: 100%;
    height: 5vh;
    background-color: #FFF59B;
    padding: 5px;
}

.con-btn2 a{
    text-align: center;
    text-decoration: none;
    color: black;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.con-btn2 a img{
    height: 50%;
}

.map{
    margin-top: 20px;
    margin-bottom: 20px;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con-foo{
    width: 100%;
    height: 10vh;
    padding-bottom: 20px;
}

.con-foo a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con-foo a img{
    height: 100%;
}