body {
    font-family: 'Courier New', Courier, monospace;
    box-sizing: border-box;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1rem;
}

.content {
    width: 90%; 
    max-width: 600px; 
    display: flex;
    flex-direction: column;
}

header {
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 2.5rem; 
    margin-bottom: 0.75rem;
}

main {
    font-size: 1rem; 
    margin-bottom: 1.5rem;
}

img {
    width: 45px;
    height: 45px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 1rem; 
}

footer a {
    text-decoration: none;
}

@media (min-width: 768px) {
    body {
        padding: 0; 
    }

    .content {
        width: 32%; 
    }

    header {
        font-size: 3rem; 
    }

    main {
        font-size: 1.2rem; 
    }
}