/* Resets */
  *, *::before, *::after {
    box-sizing: border-box;
  }

* {
    margin: 0;
  }
  
/* Styles */
html, body, #wrapper {
    height: 100vh;
    font-family: "Roboto", sans-serif;
}

#wrapper {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 300px;
}

.tagline {
    font-weight: 100;
    font-style: normal;
    margin-top: 20px;
    padding: 5px 325px;
    font-size: 18px;
    text-align: center;
}

.action {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 7px;

}

.prompt {
    color: #5EB33D;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
}

.contact {
    font-weight: 500;
    font-style: normal;
    font-size: 16px; 
    background-color: #5EB33D; 
    color: white; 
    border: none; 
    padding: 12px 24px; 
    border-radius: 30px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
  }
  
  .contact:hover {
    background-color: #4a8e31; 
  }

.footer {
    height: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.copyright {
    padding: 5px 20px;
    width: 100%;
    font-size: 11px;
    text-align: right;
    font-weight: 300;
    font-style: normal;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .tagline {
        padding: 5px 250px;
    }
}

@media screen and (max-width: 768px) {
    .tagline {
        padding: 5px 125px;
    }
}

@media screen and (max-width: 480px) {
    .tagline {
        padding: 5px 75px;
    }
}
