@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}

body{
    margin: 0 auto;
    background: wheat;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    
}

.contenedor{
    max-width: 1920px;
    width: 100%;
    height: 100vh;
    background: url(images/bg-pattern-top.svg) -70% 180%/70% , url(images/bg-pattern-bottom.svg) 180% -70%/70%, hsl(185, 75%, 39%) center center;
    /* background: -70% 180%/ 70% hsl(185, 75%, 39%) url(images/bg-pattern-top.svg),
               70% hsl(185, 75%, 39%) url(images/bg-pattern-bottom.svg); */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card{
    /* display: none; */
    background: whitesmoke;
    min-width: 350px;
    width: 350px;
    height: 400px;
    border-radius: 20px;
    box-shadow: -2px 4px 17px -3px rgba(0,0,0,0.7);
}

.card__header{
    border-radius: 15px 15px 0 0;
    height:35%;
    width: 100%;
    background-image: url(images/bg-pattern-card.svg);    
}
.card__body{
    height: 40%;
    display: flex;
    flex-flow: nowrap column;
    align-items: center;
}
.card__enlace{
    width: fit-content;
    border-radius: 50px;
    margin-top: -50px;
    margin-bottom: 20px;
}
.card__imagen{
    border: whitesmoke solid 4px;
    width: 100%;
    border-radius: 50px;
}
.card__datos{
    font-weight: 400;
    color: hsl(0, 0%, 59%);
    margin-bottom: 15px;
}
.card__nombre{
    color:  hsl(229, 23%, 23%);
    margin-right: 20px;
}
.card__pais{
    font-weight: 700;
    color: hsl(0, 0%, 59%);
    font-size: 16px;
    margin-bottom: 30px;
}

.card__linea{
    border: none;
    border: 1px solid hsl(0, 0%, 83%);
}

.card__footer{
    display: flex;
    justify-content: space-around;
    height: 25%;
}

.detalle{    
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.detalle__number{
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 5px;
}

.detalle__desc{
    font-size: 12px;
    font-weight: 700;
    color: hsl(0, 0%, 59%);
    letter-spacing: 2px;
}

.detalle__number,.card__datos{
    font-family: sans-serif;
}

@media (max-width:375px) {
    .contenedor{
        background: url(images/bg-pattern-top.svg) 300% -95% /120%,url(images/bg-pattern-bottom.svg) -175% 200%/120%, hsl(185, 75%, 39%) center center;
        /* background: -70% 180%/ 70% hsl(185, 75%, 39%) url(images/bg-pattern-top.svg),
                   70% hsl(185, 75%, 39%) url(images/bg-pattern-bottom.svg); */
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}