* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100vh;
}

.description {
    font-size: 24px;
    color: #000;
    text-align: right;
    max-width: 50%;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.footer-text {
    font-size: 18px;
    color: #000;
    text-align: center;
}

@media (max-width: 768px) {
    .description {
        font-size: 18px;
        max-width: 70%;
    }
}