* {
  padding: 0;
  margin: 0;
  line-height: 120%;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333;
  line-height: 1.6;
}

footer {
   padding: 20px 0;
}

header {
   width: 100%;
   padding: 20px 0;
   position: sticky;
   top: 0;
   background-color: #f0f0f0;
}

.pfp {
   border-radius: 100%;
}

.navwrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nocode-wrap {
   display: flex;
   align-content: center;
   justify-content: center;
   align-items: center;
   gap: 2rem;
}

.profilewrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   grid-template-rows: 1fr;
   align-items: center;
   padding: 5px 10px;
   gap: 12px;
   border-radius: 5px;
}

.codewrapper {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 5px 10px;
   gap: 12px;
   border-radius: 5px;
}

li {
  list-style: none;
}

ul {
  display: flex;
  gap: 1rem;
  flex-direction: row;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 0px 80px;
}

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

@media screen and (max-width: 1024) {
  section {
    padding: 0px 40px;
  }
}

@media screen and (max-width: 768px) {
  section {
    padding: 0px 20px;
  }
}
