body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, white, green);
    color: white;
    text-align: center;
}

.container {
    max-width: 600px;
    background: rgba(193, 196, 194, 0.5);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: black; 
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: black; 
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    transition: 0.3s;
    display: inline-block;
    font-weight: bold;
}

.apple {

    gap: 10px;
}

.google {

    gap: 10px;
}

.apple img, .google img {
    height: 50px;
    width: auto;
}

.btn:hover {
    opacity: 0.8;
}

.subtext {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}