<link rel="stylesheet" href="styles.css">

<style>

@font-face {
    font-family: "DRUNKFONTS-Regular"; 
    src: url("DRUNKFONTS-Regular.otf") format("truetype");
    /* or: */
    src: url("https://neocities.org/dashboard#") format("opentype"); */
}

@font-face {
    font-family: "RetroMemories"; 
    src: url("RetroMemories.ttf") format("truetype");
    /* or: */
    src: url("https://neocities.org/dashboard#") format("opentype"); */
}

@font-face {
  font-family: 'do_hyeonregular';
  src: url("https://neocities.org/dashboard#") format("truetype"); */

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

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    font-size: 1.5em;
}

.container {
    background: white;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 90%;
    }
}

</style>