/*Código de nuestra zona de trabajo*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body{
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(236, 235, 233) 100%);
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

header{
    background-color: #114091;
    color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header div{
    display: flex;
    align-items: center;
}

.logo{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

nav a{
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

main{
    padding: 20PX
}

#home{
    background: linear-gradient(90deg, rgb(255, 0, 0) 0%, rgb(255, 39, 39) 50%,  rgb(243, 80, 90) 100%);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 768px) {
    #home {
        flex-direction: column;
        text-align: center;
    }
}

.home-image{
    width: 400px;
    height: 300px;
    margin-right: 10px;
}

#about{
    background: linear-gradient(90deg, rgb(17, 64, 145) 0%, rgb(84, 122, 168) 50%,  rgb(101, 186, 191) 100%);
    color:#ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
}

#contact{
    background: linear-gradient(90deg, rgb(255, 0, 0) 0%, rgb(255, 39, 39) 50%,  rgb(243, 80, 90) 100%);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
}

.contact-link{
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ce1c1c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

footer{
    background-color: #114091;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    width: 100%;
    bottom: 0;
}