body {
  background-color: #0e0e0e;
  margin: 0;
  font-family: Montserrat;
}
section {
  width: 100%;
  height: 100vh;
}
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  height: min-content;
}
 .left {
  float: left;
  display: flex;
  justify-content: center;
  flex-direction: column; /* Updated to column layout */
}
 .right {
  float: right;
  display: flex;
  justify-content: flex-start;  
  align-items: center;
}
.text {
  align-self: flex-end;
  width: 40rem;
  margin-right: 30px;
  margin-bottom: 5px;
  text-align: center;

}
.text h1 {
  color: #fff;
  margin: 0;
}


.left .content {
  margin-top: 0;
  border-radius: 15px;
  color: #fff;
  background-color: #1b1b1b;
  height: 22rem;
  width: 40rem;
  margin-right: 15px;
  align-self: flex-end;
  border: 1px solid;
  border-color: #080909;
}
.content .row {
  width: 100%;
  display: flex;
  border-bottom: 1px solid;
  border-color: #080909;
}

.row .info {
 margin-left: 20px; 
}
.info .title {
  margin-bottom: 0;
}
.info .commitedby {
  margin-top: 0;
  font-size: 12px;
}
.commitedby img {
  margin-bottom: -2px;
}
.timestamp {
  align-self: center;
  margin-right: 20px;
  margin-left: auto;
  color: #545454;
}
.pfp {
  height: 12px;
  border-radius: 8px;
}


.right .logo {
  height: 64px;
}
.right .content {
  height: 22rem;
  width: 16rem;
  margin-left: 15px;
  color: #fff;
}
.right .content .buttons {

  bottom: 0;
width: 100%;
height: 3rem;
}

.webstore {
  height: 64px;
  background-color: #16181a;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Added transition property */
}
.webstore:hover {
  background-color: #080909;
  cursor: pointer;
}
.discord {
  height: 64px;
  background-color: #16181a;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Added transition property */
}
.discord:hover {
  background-color: #080909;
  cursor: pointer;
}
.cryptotip {
  height: 64px;
  background-color: #16181a;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Added transition property */
}
.cryptotip:hover {
  background-color: #080909;
  cursor: pointer;
}

footer {
  position: absolute;
  bottom: 0;
  height: 3rem;
  width: 100%;
  background-color: #000;
  color: #575757;
}




.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  cursor: pointer;
}
.tooltip img {
  margin-bottom: -4px;
  margin-left: 5px;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 15px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -163px;
  font-weight: 300;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  font-size: 12px;
}

.fleft {
  float: left;
  margin-left: 15px;
}
.fleft a {
  text-decoration: none;
  color: #575757;
}
.fright {
  float: right;
  margin-right: 15px;
}
