

*{
    box-sizing: border-box;
}

body{
background-image: linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.3)),url(images/fondo.jpg);
font-family: Arial, Helvetica, sans-serif;
/* font-family: ARLRDBD; */
background-position: center center fixed;
background-size: cover;
min-height: 100vh;
margin: 25px;
}

/* Tarjeta Digital */
/* GENERAL */

.container_general{
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.Card{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(0, 0, 0,10%);
    padding: 25px;
    max-height: 1000px;
    max-width: 300px;
    margin: 0;
    border-radius: 50px;
}

/* INTERNOS */

.text_Ehvol{
    text-align: center;
}

.logoehvol{
    width: 160px;
    height: 160px;
    animation: float 6s ease-in-out infinite;
    border-radius: 50%;
    border: 2px solid #ffffff;

}


@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-8px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}


.slogan{
font-size: 18px;
margin-top: 8px;
margin-bottom: 8px;
color:#ffffff;
font-weight: bold;
}

.texto{
margin-top: 10px;
margin-bottom: 10px;
color:#ffffff;
}


hr{
    width: 200px;
    border-style: none;
    border: 2px solid #ffffff;
    background-color: #ffffff;
}


.botton_principal{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.botton_one{
background-color:#ffffff;
cursor: pointer;
border-style: none;
border-radius: 50px;
width: 150px;
padding-top: 5px;
padding-bottom: 5px;
margin: 0px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
margin-bottom: 10px;
font-size: 18px; 
font-weight: bold;
}

.botton_one:hover{
    background-color:#000000;
    border: 1px solid #ffffff;
    animation:scale-down-center 0.4s;
    color:#ffffff
    
}

@keyframes scale-down-center {50%{transform:scale( 1.2)}}



.botton_secundary{
    display: flex;
    align-items: center;
    justify-content: center;

    
}

.social_media{
width: 50px;
height: 50px;
border-radius: 50%;
border-style: none;
margin: 5px;
font-size: 25px;
cursor: pointer;
}

.social_media:hover{
    background-color: #000000 ;
    color: #ffffff ;
    animation: shake 0.25s;
    border: 2px solid #ffffff;
}

@keyframes shake{

    10% { 
        transform: rotate(15deg);
    }
    
    20% { 
        transform: rotate(-15deg);
    }
    
    30% { 
        transform: rotate(15deg);
    }
    
    40% { 
        transform: rotate(-15deg);
    }
    
    }


.derechos{
    color: #ffffff;
}

