html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1.5px;

}
a:link, a:visited{
    text-decoration:none;
    color: #0000ff;
    font-size: 28px;
}
a:hover{
    text-decoration:underline;
    color: #ff0000;
}
.container-index {
    text-align: center;
}
.download {
    max-width: 250px;
    max-height: 250px;
    margin-bottom: 5px;
}
.title{
    font-size: 30px;
}
.description{
    font-size:24px;
    color: #333333;
}
.logo{
    max-width: 240px;
}
/* Media Query for Tablets Ipads portrait mode */
@media  (max-width: 1024px){
    /* body{
        background-color: #0000ff;
    } */
    a:link, a:visited {
        font-size: 40px;
    }
    
    p {
        font-size: 48px;
    }
    
    span {
        font-size: 36px;
    }
    
    .download {
        max-width: 400px;
        max-height: 400px;
        margin-bottom: 10px;
    }
    .title{
        font-size: 60px;
    }
    .description{
        font-size: 38px;
    }
    .logo{
    max-width: 500px;
}
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

.container {
    max-width: 250px;
    width: 100%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: white;
}

input {
    width: calc(100% - 20px); /* Prevents touching the border */
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding does not exceed width */
}

button {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}
