header .container, main .container, footer .container {
    max-width: 855px;
    margin: auto;
}
header {
    background-color:  #fff;
    overflow: hidden;
}
header .left {
    float: left;
    width: 570px;
}
main {
    background-color: white;
    overflow: hidden;
    margin-top: 10px;
    display: block;
}
header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
}
header li {
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    margin-left: 10px;
    margin-top: 10px;
}
header li a, .dropbtn {
    display: flex;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
header li a:hover, .dropdown:hover .dropbtn {
    background-color: rgb(219, 217, 217);
}
header li.dropdown {
    display: inline-block;
}
header .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fcfafa;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}
header .dropdown-content a {
    color: rgb(8, 7, 7);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
header .dropdown-content a:hover {
    background-color: rgb(219, 217, 217);
}
header .dropdown:hover .dropdown-content {
    display: block;
}
header .inicio-container img {
    width: 180px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
footer {
    margin-top: 10px;
    display: flex;
}
footer li, footer a, footer h3 {
    color: #f8f1f1;
}
footer .left {
    float: left;
    width: 570px;
}
footer .right {
    float: right;
    width: 285px;
    align-items: flex-start;
    gap: 20px;
}
header {
    background-color:  #fff;
    overflow: hidden;
}
header .left {
    float: left;
    width: 570px;
}
main {
    background-color: white;
    overflow: hidden;
    margin-top: 10px;
    display: block;
}
main h3, main h1, main p {
   font-family: Arial, Helvetica, sans-serif;
}
main h3 {
    font-size: 30px;
}
main h1 {
    font-size: 40px;
}
main p {
    margin: 19px 20px 1em 15px;
    text-align: justify;
    font-size: 20px;
}
main .left {
    float: left;
    width: 570px;
}
main .right {
    float: right;
    width: 285px;
    display: block;
}
main div .lista {
    font-size: 15px;
    margin: 60px 20px 1em 20px;
    text-align: left;
    padding-left: 20px;
}
main .welcome {
    gap: 20px;
    padding: 0;
    margin-top: 20px;
    max-width: 155px;
    display: flex;
}
main .welcome img {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}
main .welcome h1 {
    color: rgb(0, 0, 0);
    font-family: 'Lucida Sans', Geneva, sans-serif;
    font-size: 80px;
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
}
main .movimento {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
main .imagemlink {
    text-decoration: none;
}
main .imagemmov {
    width: 150px;
    height: 200px;
    margin: 10px;
    border-radius: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: width 0.5s;
}
main .imagemmov:hover {
    width: 400px;
}
main .imagem-container {
    max-width: 400px;
    height: 400px;
    margin-left: 100px;
    padding: 20px;
}
main .imagem-container img {
    width: 100%;
    height: 100%;
    box-shadow: 2px 2px 5px #000000c0;
    border-radius: 10px;
    object-fit: cover;
}
main .imagem-container button {
    background-color: white;
    color: black;
    border: 2px solid #000000;
    padding: 10px;
    margin-top: 10px;
}
main a {
    text-decoration: none;
    color: #000000;
}
a:-webkit-any-link {
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .welcome {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    img {
      width: 100%;
      max-width: 300px;
    }
    header ul {
      flex-direction: column; 
    }
    header li {
      font-size: 20px; 
      margin: 5px 0;
    }
    header .inicio-container img {
      width: 150px;
      margin-top: 10px;
    }
    .container {
      width: 90%;
      padding: 15px;
    }
    footer {
      flex-direction: column;
      align-items: center;
    }
    footer .left, footer .right {
      width: 100%; 
      float: none;
      margin: 10px 0;
    }
    footer li, footer a, footer h3 {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 480px) {
    h1 {
      font-size: 2.5em;
    }
    header li {
      font-size: 18px;  
    }
    footer li, footer a, footer h3 {
      font-size: 12px;  
    }
  }