body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #3494E6, #EC6EAD);
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 300px;
    height: 60px;
}

p {
    font-size: 18px;
    color: #333;
}

@media only screen and (max-width: 760px), (min-width: 768px) and (max-width: 1024px) {
    
    .container {
        display: 80%;
    }
}
