﻿ * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
                
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #c7c8cc;
            text-align: center;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            justify-content: center;
            align-items: center;
            font-size:18px;
            background-image:url('../images/back.jpg');
            background-position:center;
            background-repeat:no-repeat;
            background-size:100% 100%;

            
        }
        .menu {
            width: 100%;
            background: transparent;
            padding: 10px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        .menu-buttons {
            display: flex;
            gap: 10px;
           
        }
        .menu-buttons a {
            background: #B4176D;
            color: #fff;
            text-decoration: none;
            padding: 8px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: background 0.3s;
        }
        
        .menu-buttons i {
          
            color: #fff;
            
        }

        .menu-buttons a:hover {
            background: #fff;
            color:#000;
        }
        
                .menu-buttons a:hover i {
               color:#000;
        }

        
        .container {
            max-width: 800px;
            padding: 20px;
            /*background: white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            
        }
        .logo {
            max-width: 350px;
            margin-bottom: 20px;
        }
        h1 {
            color: #000;
            font-size:1.0em;
        }
         h2 {
            color: #B4176D;
            font-size:1.5em;
            font-family: 'Poppins', sans-serif;
                   }
                   
        .contacto{
                         
                   padding:15px;
                 
	
}

.color-ico{
            color: #5a287f;                   
                   }



        .contact-info {
            text-align: left;
            margin-top: 20px;
            vertical-align:middle;
        }
        .contact-info p {
            display: flex;
            align-items: center;
            gap: 10px;vertical-align:middle;

        }
        .footer {
            background: #B4176D;
            color: white;
            padding: 10px;
            position: relative;
            bottom: 0;
            width: 100%;
            text-align: center;
            margin-top: auto;
        }
        .contact-info div {
        margin-bottom: 20px; 
    }
    
a:link {
    color: #000; 
  
}

a:visited {
    color: #000; 
}

a:hover {
    color: #fff; 
    text-decoration: none; 
    background-color: #000;
    padding:5px;
    
    
}

a:active {
    color: #000;
}

a:focus {
    color: #000; 
    outline: none;
}    
    
    
    