* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header, 
section h2,
section h3,
form button {
    font-family:'Agbalumo', cursive;
    font-weight: normal;
}

body,
form input,
form textarea {
    font-family: 'Roboto', sans-serif;
    background-color: rgb(255, 255, 141);
}

header {
    padding: 16px 0;
    background-color: #ffc609;
    color: #ecf0f1;
}

header nav li {
    display: inline;
    margin-left: 16px;
    font-size: 18px;
}

header nav li a {
    color: #ecf0f1;
    text-decoration: none;
}

header nav li a:hover {
    color: #cacaca;
}

.sub {
    margin-right: 70px;
}

.insta {
    height: 25px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.container2 {
    max-width: 1280px;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .container {
    align-items: center;
    justify-content: space-between;
}

.produto {
    margin-right: 67px;
    border-radius: 100%;
    border: 8px solid #ffc609;
    display: inline;
    justify-content: space-between;
    width: 250px;
}

.produto:hover {
    animation: expand 0.3s ease forwards;
}

@keyframes expand {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
}

.direito {
    align-items: center;
}
.pedidos {
    margin-right: 80px;
    margin-left: 90px;
}

section .container{
    align-items: flex-start;
}

section {
    padding: 24px 0;
    color: #ffffff;
}

section h2 {
    margin-bottom: 16px;
}

section p {
    margin-bottom: 8px;
}

.ceci {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    height: 200px;
}

.sobremimdiv {
    background-color: #ffc609;
    padding: 5px;
    margin-right: 70px;
    border-radius: 5%;
    border: 4px solid rgb(255, 255, 0)
}

.textosobre {
    margin-top: 16px;
    font-family: "Signika Negative", cursive;
    font-weight: bold;
}

.tituloprod {
    text-align: center;
    margin-right: 50px;
}

.sobremim {
    margin-top: 16px;
    justify-content: center;
    color: white;
    text-align: center;
}

.social-links img {
    height: 24px;
}

.social-links li {
    display: inline;
    margin-right: 8px;
}

.social-links li a {
    text-decoration: none;
}

#contact .container {
    display: block;
}

.infos {
    display: flex;
    justify-content: space-between;
}

form input,
form textarea,
form button {
    display: block;
    width: 320px;
    margin-bottom: 8px;
    padding: 8px;
}

form textarea {
    resize: none;
    height: 180px;
}

.place {
    text-align: justify;
}

section h3 {
    margin-bottom: 16px;
}

form button {
    background-color: #d6a914;
    color: #ecf0f1;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #dfae0f;
}

input:focus, textarea:focus {
    outline-color: #ffc609;
}

footer {
    background-color: #ffc609;
    color: #ecf0f1;
    padding: 16px;
}