@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body {
    background-color: #082032;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* Header */

header {
    box-shadow:  0 0 15px rgba(0, 0, 0, 0.5);
    background-color: #ff9835;
    height: 80px;
    padding: 0 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: sticky;
    top: 0.1px;
}

header h1 {
    color: #f52019;
}

header nav {
    flex-grow: 0.4;
}

header nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    font-size: 1.2rem;
}

header nav ul li a {
    text-decoration: none;
    color: #f52019;
}

/* containerOptions style */

section.containerOptions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 2rem;
}

section.containerOptions button {
    border: none;
    background-color: #faa668;
    box-shadow:  0 0 15px rgba(0, 0, 0, 0.4);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transition: all 550ms ease-in;
}

section.containerOptions button img {
    width: 100px;
    height: 80px;
}

section.containerOptions button:hover {
    box-shadow:  5px 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

/* Topic */

section h2.topic {
    padding-top: 4rem;
    color: #f52019;
    text-align: center;
    font-size: 4rem;
}

/* containerItem style */

section section.containerItems {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2rem;
    margin: 3rem;
    background-color: #ff533a;
}

/* Article style */

article.item {
    box-shadow:  5px 5px 5px rgba(0, 0, 0, 0.2);
    height: 250px;
    width: 300px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 550ms ease-in;
    background-color: #ff7254;
}

article.item button {
    border: none;
    background-color: #ff7254;
}

article.item button a img {
    width: 200px;
    height: 200px;
}

article.item:hover {
    box-shadow:  5px 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

/* Contacto */

article.itemContact {
    box-shadow:  5px 5px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 550ms ease-in;
}

section h3.contactTopic {
    display: flex;
    color: #ff9835;
    justify-content: center;
    font-size: 1.5rem;
}

section input, textarea {
    width: 100%;
    font-size: 0.938rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: .5rem;
    border: none;
    outline: none;
    margin-bottom: 2rem;
    background-color: #faa668;
}

section form button {
    cursor: pointer;
    width: 50%;
    font-size: 1rem;
    color: #f52019;
    padding: 1rem;
    border-radius: 5rem;
    border: none;
    background-color: #faa668;
}

/* Footer */

footer {
    background-color: #061825;
    padding: 2rem 0;
}

footer .tittle {
    color: #f52019;
    text-align: center;
    font-size: 2.5rem;
}

div.social {
    display: flex;
    background-color: #082032;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    transition: all 550ms ease-in;
}

div.social a {
    text-decoration: none;
    color: #ff533a;
    margin: auto auto 0 auto;
    font-size: 40px;
}

div.social:hover {
    box-shadow:  5px 5px 15px rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.box {
    display: flex;
}

.containerSocial {
    justify-content: space-evenly;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
}

/* Ir arriba */

div.up {
    width: 40px;
    height: 40px;
    background-color: #faa668;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f52019;
    border-radius: 50%;
    font-size: 35px;
    position: fixed;
    bottom: 25px;
    right: 15px;
    cursor: pointer;
    border: 4px solid transparent;
    transition: all 300ms ease;
    transform: scale(0);
}