* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #edeef0;
  color: #333;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px;
}
a {
  color: inherit;
}

#latest h1{
  font-size: 16px;
  font-weight: 100;
  height: 64px;
  width: 100%;
  text-align: center;
  color: rgb(88, 88, 88);
}

#header {
  height: 64px;
  width: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  cursor: default;
}
#header h1 {
  font-size: 28px;
  line-height: 64px;
  font-weight: 500;
  color: #333;
}
#content {
  max-width: 420px;
  margin: 0 auto;
  padding: 48px 0 0 0;
}
.section {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 48px;
  overflow: hidden;
}

.image img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 300px;
}
.section .meta {
  padding: 24px;
}
.me {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  margin-bottom: 12px;
}
h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}
.copy {
  position: relative;
  top: 50px;
  text-align: center;
}
.links {
  background: none;
  text-align: center;
}
.link {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #666;
  margin-bottom: 8px;
}
.link:hover {
  text-decoration: underline;
}
.link:last-of-type {
  margin-bottom: 0;
}
h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 2px;
}
p {
  font-size: 16px;
  line-height: 20px;
  color: #999;
}
ul li {
  margin-bottom: 32px;
}
ul li:last-of-type {
  margin-bottom: 0;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 50px; /* Place the button at the bottom of the page */
  right: 50px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  outline: none; /* Remove outline */
  color: black; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  font-size: 35px; /* Increase font size */
  background-color: transparent;
  padding: 20px;
  border: 0px;
}

@media screen and (max-width: 680px) {
  #myBtn {
    visibility: hidden;
  }
}

@media screen and (max-width: 420px) {
  #latest {
    padding: 48px 0 0 0;
  }
  #content {
      width: 100%;
      padding: 0;
 }
  .idea {
      border-radius: 0;
      margin: 0;
 }
  .links {
      margin-top: 48px;
 }
}