body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
	background-color: #9174ce;
    font-family: "Exo 2", "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 26px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
	background: #9174ce;
}

.logo {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.5s;
    overflow: hidden;
	background: #9174ce;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.typewriter {
    padding: 20px;
    color: #ffffff;
	text-align: center;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
		justify-content: flex-start;
		padding-top: 0px;
		height: 70%;
    }

    .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;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin: 0;
}