@charset "utf-8";
/* CSS Document */
/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.notice-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 90%;
}

h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

p {
    color: #555;
    line-height: 1.6;
    margin: 10px 0;
}

h2 {
    color: #333;
    font-size: 18px;
    margin-top: 20px;
}

a {
    text-decoration: none;
}

.instagram-icon {
    width: 40px;
    height: 40px;
}

a:hover .instagram-icon {
    opacity: 0.8;
}
