@charset "UTF-8";
/* CSS Document */

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

body{
	 width: 100%;
      height: 100vh;
      background: url("images/hero2.png") no-repeat 50% 50%;
      background-size: cover;
}

body{
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 20px;
	
}

.logo{
    margin-top: 200px;
    text-shadow: 9px 9px 6px #6B6B6B;
}

#container{
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	margin:auto;
	width:80%;
	text-align: center;
	padding: 30px;
	
}

.espanol a{
    background-color: midnightblue;
	flex: 1;
    flex-basis: 30%;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    float: left;
    opacity: 1;
    
    font-style: normal;
    font-weight: lighter;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    letter-spacing: 2px;
    border-radius: 15px;
    -webkit-box-shadow: 4px 4px 6px 0px #848484;
    box-shadow: 4px 4px 6px 0px #848484;
    min-width: 115px;
    transition-duration: .7s;
}
.ingles a{
    background-color:midnightblue;
	flex: 1;
    flex-basis: 30%;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    float: right;
    opacity: 1;
    
    font-style: normal;
    font-weight: lighter;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    letter-spacing: 2px;
    border-radius: 15px;
    -webkit-box-shadow: 4px 4px 6px 0px #848484;
    box-shadow: 4px 4px 6px 0px #848484;
    min-width: 115px;
    transition-duration: .7s;
}

.espanol a:hover{
	background-color:azure;
	color: midnightblue;
	transition-duration: .7s;
}

.ingles a:hover{
	background-color: azure;
	color:midnightblue;
	transition-duration: .7s;
}

.footer{
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 12px;
    color: midnightblue;
    width: 100%;
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    position: fixed;
	bottom: 0px;
}

@media screen and (max-width: 990px) {
	
	.logo{
		margin-top: 400px;
	}
	

	
	
	
	
	
	
	
	
	
}