/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
  
  margin: 0;
  padding: 0;
}
body {
  background-image: url("https://i.imgur.com/WwOY89q.jpeg");
  background-size: cover;   
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; 
  color: black;
  font-family: "Courier Prime", monospace;
  height: 100vh;
}
h2 {
  margin-left: 1rem;
}
h3 {
  margin-left: 3rem;
}
.list {
  list-style: none;
  margin-left: 2rem;
}
.web_title {
  color: transparent;
  background: linear-gradient(to right, #000000,#ADD8E6,#4169E1,#0000FF);
  background-clip: text;
  background-size: 200% auto;
  animation: deslizar 2s linear infinite;
}

@keyframes deslizar {
  to {
    background-position: 200% center;
  }
}

.text {
  margin: 1rem;
}

.xp {
   width: 800px;
  background-color: rgb(255, 255, 255, 0.7);
  margin-top: 10px;
  border: 5px solid white;
  box-shadow: 0px 0px 15px black;
  border-radius: 10px;
  margin: 20px auto;
  overflow: hidden;
}

.xp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(#e0e0e0, #f0f0f0, #c0c0c0);
  border-radius: 8px;
  padding: 4px 8px;
}

.buttons span {
  display: inline-block;
  align-items: center;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  border-radius: 50%;
}


.close { background: red; }
.min { background: yellow; }
.max { background: green; }

.address-bar {
  flex: 1;
  margin-left: 8px;
  background: white;
  border: 1px inset #aaa;
  padding: 2px 6px;
  font-size: 12px;
  color: #333;
}

.xp-content {
  padding: 12px;
}

.first-block {
  display: flex;
}
.about-me {
  display: block;
  width: 60%;
}
.gif-estrela {
  display: flex;
  justify-content: space-between;
  margin-left: 2rem;
  height: 14rem;
  width: 14rem;
}