* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: typewriter;
    font-size: large;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 20px 0;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    font-style: italic;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    font-size: 1em;
}

@font-face {
    font-family: typewriter;
    src: url(rough_typewriter-itl.otf);
}
