body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}
#roofulateLogo {
    WIDTH: 300PX;
    display: block; /* Allows margin to be applied properly */
    margin: 0 auto; /* Centers the image */
    opacity: 0.5; /* 50% transparency; adjust the value between 0 and 1 as needed */
    position: absolute; /* Position it relative to the nearest positioned ancestor or to the body */
    margin-top: 250px;
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Offset the image by half its width and height to center it */
  
}
.hero-section {
    background-color: #ffffff;
    color: rgb(9, 179, 31);
    min-height: 100vh; /* 100% of the viewport height */
    text-align: center;
    padding: 50px 20px;
    padding-top: 100px;
    /* Removed margin-top here */
}

.hero-section h1 {
    margin: 0;
    font-size: 50px;
    padding-top: 20%;
}

.hero-section p {
    font-size: 20px;
    line-height: 1.6;
}

.hero-section .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: hsl(136, 100%, 50%); 
    color: rgb(74, 73, 73);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.hero-section .btn:hover {
    background-color: hsl(136, 96%, 45%); 
    color: rgb(0, 0, 0);
}

.stars {
    color: #b3e724; 
    font-size: 30px;
}
.login-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #4CAF50;;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}