*{
    margin: 0px;
    padding: 0px;
}

body{
    background-color: black;
}

.head {
    border: 10px solid black;
    box-shadow: 0px 0px 20px gray;
    border-radius: 10px;
    background-color: black;
    color: white;
}

.head__title{
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    font-style: italic;
}

.head__parrafo{
    text-align: left;
    font-family: Arial, Helvetica, sans-serif
}

.head__nav {
    font-size: 20px;
    font-style: italic;
}

.nav__list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav__item a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.7s;
}

.nav__item a:hover {
    color: red;
}

.menu{
    width: 1000px;
    margin: 10px auto;
    border: 1px solid gray;
    box-shadow: 0px 0px 20px gray;
    border-radius: 10px;
    padding: 10px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.menu .divi{
    font-family: Georgia, 'Times New Roman', Times, serif;
    border-bottom: 1px solid #ccc;
    background-color: red;
    padding: 10px;
    position: relative;
}

.clearfix{
    clear: both;
}

.divi__title{
    text-align: center;
    margin: 20px;
    padding: 5px;
    font-style: italic;
}
.divi__parrafo{
    color: black;
    width: 600px;
    font-size: 20px;
    padding: 10px;
}

.divi__imagen {
    width: 200px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 80px;
    top: 23%;
}

.divi__ima{
    width: 400px;
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px black;
}

.box{
    display: block;
    justify-content: space-between;
    margin: 20px;
}

.round-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    flex-shrink: 0;
    position: static;
}

.divi__fila {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
}

.moto-card-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    transition: transform 0.5s ease;
}

.moto-card-1:hover {
     transform: rotate(360deg);
}

.moto-card-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    transition: transform 0.5s ease;
    
}

.moto-card-2:hover {
    transform: scale(1.2);
}

.moto-card-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    transition: transform 0.5s ease;
    
}

.moto-card-3:hover {
    transform: translate(50px, 20px);
}

.moto-card-1 a {
    color: black;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s;  
}

.moto-card-2 a {
    color: black;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s;  
}

.moto-card-3 a {
    color: black;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s;  
}

.moto-card-1 a:hover {
    color: white;
}

.moto-card-2 a:hover {
    color: white;
}

.moto-card-3 a:hover {
    color: white;
}

footer{
    color: white;
    font-style: italic;
    text-align: center;
}

