body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logo-caja {
    padding-left: 50px;
}

.logo {
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid black;
}

header {
    width: 100%;
    background-color: #333;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navegacion ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding-right: 50px;
}

.navegacion ul li a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bolder;
}

.navegacion ul li a:hover {
    color:rgb(4, 248, 4);
    opacity: 0.7;
    transition: all 0.5s ease;
    border: 1px solid white;
    padding: 6px;
}

#pantalla-dividida {
    display: flex;
    flex: 1;
    width: 100%;
}

.izquierda {
    background-color: rgb(4, 248, 4);
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.derecha {
    background: url(/Img/imaagen1.png.jpeg);
    background-size: cover;
    background-position: center;
    width: 50%;
}

.creative {
    color: black;
}

h1 {
    font-size: 60px;
    width: 80%;
    margin: 0 0 40px 0;
    text-align: center;
    color: white;
}

p {
    font-size: 23px;
    line-height: 30px;
    width: 80%;
    margin: 0;
    text-align: center;
    color: black;
}

.botonleer {
    border: 3px solid #fff;
    padding: 20px 40px;
    text-decoration: none;
    color:#fff;
    border-radius: 30px;
    display: inline-block;
    font-weight: bold;
    margin-top: 50px;
}

.link {
    text-align: center;
    width: 100%;
    margin-top: 30px;
}