body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
	background-color: #ededed;
    font-family: "Exo 2", "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 26px;
}

.container {
    display: flex;
    height: 100%;
    flex-direction: row;
	background: #9174ce;
}

.logo {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    transition: width 0.5s;
    overflow: hidden;
	background: #9174ce;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.typewriter {
    width: 50%;
    padding: 20px;
    color: white;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .logo {
        width: 100%;
    }

    .typewriter {
        width: 100%;
    }
}

/* Rest of the CSS remains unchanged */

footer {
    background-color: #9174ce;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    line-height: 4px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}