.bordes1{
border-width:5px;
height: 100px;
}

.bordes2{
border-width:5px;
height: 100px;
}

.captura{
border-width:5px;
height: 230px;
}

body {
    background: linear-gradient(135deg, #194676, #3469b9); 
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #FFFFFF; 
    border: 3px solid #0e075a; 
    border-radius: 20px; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    margin: 50px auto; 
    padding: 20px;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

h1 {
    color: #0e075a; 
    text-shadow: 2px 2px #000000; 
}

h2 {
    color: #0e075a; 
    text-shadow: 2px 2px #000000; 
}

.social-info {
    background-color: #E0E0E0;
    border: 2px dashed #0e075a; 
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
}

.icon {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.screenshots {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.screenshots img {
    width: 100%;
    height: auto;
    border: 2px solid #0e075a; 
    border-radius: 10px;
    margin: 10px 0;
    transition: transform 0.3s; 
}

.screenshots img:hover {
    transform: scale(1.05); 
}

