* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    max-width: 100%;
    height: auto;
    background-color: #f7f8ff;
}

main{
    max-width: 1200px;
    height: auto;
    margin: auto;
    padding: auto;
    align-content: center;
}


.contenedor {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.contenedor a{
    width: 800px;
    height: 120px;
    border-radius: 20px;
    gap: 0;
    padding: 0;
    margin-top: 20px;
    text-decoration: none;
    opacity: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-template-areas:
        "uno dos"
}

.contenedor a:hover {
    opacity: 100%;
    transform: scale(1.05);
}

h1 {
    margin-left: 30px;
    font-size: 33px;
    line-height: 34px;
    width: 400px;
    text-align: left;
    font-family: "Source Serif Pro";

}

.imagen {
    grid-area: dos;
    width: 400px;
    height: 120px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    overflow: hidden;
}

.administracion {
    grid-area: uno;
    width: 400px;
    height: 120px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    align-content: center;
    margin: 0;
    padding: 0;
    color: #f7f8ff;
    background-color: #4862ff;
}

.informatica {
    grid-area: uno;
    width: 400px;
    height: 120px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    align-content: center;
    margin: 0;
    padding: 0;
    color: #f7f8ff;
    background-color: #5f6ce8;
}

.turismo {
    grid-area: uno;
    width: 400px;
    height: 120px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    align-content: center;
    margin: 0;
    padding: 0;
    color: #f7f8ff;
    background-color: #7675d1;
}

.diseno {
    grid-area: uno;
    width: 400px;
    height: 120px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    align-content: center;
    margin: 0;
    padding: 0;
    color: #f7f8ff;
    background-color: #a487a3;
}