html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
  }

body {
    background-color: #f4f4f4;
    color: black;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div {
    text-align: center;
}

#varviline {
    background-color: #e3eafc;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 30px;
    padding-bottom: 40px;
    border-radius: 20px;
}

#lopptext {
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    color: black;
}

p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto; 
    line-height: 1.6;
}

#koduleht {
    background-color: #5271ff !important;
    color: white;
    margin-top: 20px;
    padding: 10px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 250px;
    transition: background-color 0.3s;
  }
  
  #koduleht:hover {
    background-color: #0056b3 !important; 
  }
  
  footer {
    text-align: center; /* This will center the content inside the footer */
    padding: 30px 0;    /* Padding on top and bottom to give some space */
    position: absolute; /* This ensures the footer stays at the absolute position specified */
    bottom: 0;          /* Position footer at the bottom of its parent */
    left: 0;            /* Stretch from the left edge */
    right: 0;           /* to the right edge */
    font-size: 12px;
    background-color: #f4f4f4; 
  }