body {
  font-family: courier;
  font-weight: 400;
  letter-spacing: 1px;
  height: 100%;
  margin: 0;
  transition: background 0.5s ease;
  /*cursor: url(https://blob.gifcities.org/gifcities/XI42C5HI3NQ7NQNE6VXMCJR2KIHY7RMZ.gif), auto;*/
}

.bg-home {
  background: radial-gradient(circle,#EDC7DD 0%, #AAC257 80%);
}
.bg-about {
  background: radial-gradient(circle,#F5A9B8 0%, #A1C1C7 20%);
}
.bg-obras {
  background: radial-gradient(circle,#F9D29D 0%, #A44A3F 100%);
}
.bg-publicacoes {
  background: radial-gradient(circle,#A2C5AC 0%, #7C3F58 100%);
}
.bg-ilustracoes {
  background: radial-gradient(circle,#CFB997 0%, #383E56 100%);
}

.container {
  padding: 0 100px;  
  height: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px
  }
}

/* NAVBAR */
.navbar {
  background-color: transparent;
  display: flex;
  position: sticky;
  top: 0;
  align-items: center;
  padding-top: 80px;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .navbar {
    padding-top: 0px;
  }
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: color 0.3s;
}

.navbar-tabs {
  display: flex;
  position: relative;
  gap: 60px;
}

.underline {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  width: 0px;
  transform: translateX(0);
}

.title {
  text-align: center; 
  color: white; 
  font-weight: 400;
  font-size: 28px;
  cursor: pointer
}

.language-btn {
  display: flex;
  gap: 4px;
  align-items: center;
}

.language-btn a, p {
  color: white;
  text-decoration: none;
  font-size: 12px;
}


/* HOME SECTION */
.paintings-gif{
  height: 400px
}

@media (max-width: 768px) {
  .paintings-gif{
    height: auto
  }
}


/* ABOUT SECTION */
.grid-about {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
  padding-top: 40px;
}

.border-picture {
  border: 2px solid red;
  border-radius: 4px;
}

.url-contact {
  color: red;
  font-size: 12px;
}
