body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

.card {
    width: 400px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 20px;
}

#logo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

#description {
    width: 100%;
    height: 100%;
    text-align: center;
}

@media (max-width: 450px) {
    .card {
        width: 80%;
        padding: 5%;
    }
}