* {
  margin: 0;
  padding: 0;
}
body {
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
  background-color: #080616;
  color: #444;
}

section {
  scroll-margin-top: 100px;
  margin-top: 40px;
  padding: 20px 30px;
  border-top: 1px solid #ddd;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

main {
  background-color: #f2f2f2;
  border-radius: 10px;
  background-color: #f2f2f2;
  padding: 20px;
}

    div{
        margin-top: 10px;
        display: flex;
        justify-content: center;
    }

    .fperfil{
          width: 300px;
          height: auto;
          border-radius: 50%;
          border: 4px solid #ff5c00;
    }

    .fperfil:hover{
      transition: all ease 0.3s;
      box-shadow:  0px 0px 15px rgb(140, 76, 8);
    }



h1,
h2 {
  padding-top: 1.5px;
  color: rgb(140, 76, 8);
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1{
    font-size: xx-large;
}

#nome{
    font-size: 45px;
}

p {
  padding-top: 1.5px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal;
}

header{
    margin: 0 auto;
    border-radius: 10px;
    width: 100%;
    font-size: 40px;
}

.menu{
      list-style: none;
      display: flex;
      justify-content: space-around;
      border-radius: 10px ;

}
.menu a{
    text-decoration: none;
    color: #080616;
}

.menu a:hover{
  color: #ff5c00;
}

a{
  color: #ff5c00;
}

a:hover{
    transition: 0.3s;
    color: rgb(140, 76, 8);;
    text-shadow: 0px 0px 10px rgb(140, 76, 8);;
}



.voltar{
    
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    border-radius: 50%;
    background-color: #fcf6f6;
    border: solid gray 4px;
}

.voltar:hover{
    transition: 0.2s;
     transform: scale(1.1);
}

figure{
    margin: 30px auto;
    text-align: center;
}

figure img{
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

figcaption{
   margin-top: 10px;
  color: #555;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-family: "Manrope", sans-serif;
  background-color: #080616;
  color: #fff;
}

thead {
  font-weight: bold;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

tr:hover {
  transition: 0.3s;
  transform: scale(1.01);
}

strong {
  color: #ff5c00;
}

iframe {
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

footer{
  margin-top: 40px;
  padding: 20px;
  background-color: #080616;
  border-radius: 10px;
}

.menu-footer {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.menu-footer a{
   color: #f2f2f2;
}

.menu-footer a:hover{
  color: #ff5c00;
}