body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

#randomText {
    color: orange;
    background-color: rgba(255, 255, 0, 0.2); /* Semi-transparent yellow background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif; /* Or any fun font you like */
    font-size: 18px;
    min-width: 350px;
    max-width: 80%; /* Limiting the width */
    text-align: center;
}

  
.text-button {
  background-color: orange;
  border: none;
  color: white;
  padding: 15px 25px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  min-width: 350px;
}
		    
.text-button:hover {
  background-color: yellow;
  color: black;
 }

.share-button {
    background-color: #1DA1F2; /* Twitter's farve, eller en farve du kan lide */
    border: none;
    color: white;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px; /* afrundede hjørner */
    box-shadow: 0 5px 10px rgba(0,0,0,0.1); /* lidt skygge for et 3D-look */
    transition: 0.3s; /* glat overgangseffekt */
}

.share-button:hover {
    background-color: #0d7bbf; /* en lidt mørkere farve ved hover */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* mere skygge ved hover */
}



.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Eventuelt kan du tilføje en smule margin til knappen, så der er plads mellem den og div'en */
button {
    margin-bottom: 20px;
}

footer {
    color: #A9A9A9; /* This is a light grey color */
    font-size: 14px;
    text-align: center;
}