@charset "UTF-8";
/* CSS Document */

body {
    font-family: 'Noto Sans', sans-serif; 
    line-height: 1.6; 
    margin: 0; 
    padding: 0;
    background-color: #7E8FE3; 
    color: #333; 
}

.container {
    max-width: 900px;
    margin: 20px auto; 
    padding: 0 20px; 
    background-color: #ffffff; 
    box-shadow: 0 0 10px rgba(0,0,0,0.05); 
}

header {
    padding: 20px 0;
    border-bottom: 2px solid #e0e7ff; 
    margin-bottom: 20px;
}

header h1 {
    margin: 0 0 10px 0; 
    color: #1e3a8a; 
}

nav ul {
    list-style: none; 
    padding: 0;
    margin: 0;
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
}

nav a {
    text-decoration: none; 
    color: #3b82f6; 
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.2s ease; 
}

nav a:hover {
    color: #1e3a8a; 
    border-bottom: 2px solid #1e3a8a; 
}

main {
    min-height: 60vh; 
    padding: 20px 0;
}

main h2 {
    color: #1f2937; 
    border-left: 5px solid #3b82f6; 
    padding-left: 15px;
    margin-top: 0;
}

main a[href*="index.html"] {
    display: inline-block;
    background-color: #e0e7ff;
    color: #1e3a8a;
    padding: 8px 15px;
    border-radius: 5px; 
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.2s ease;
}

main a[href*="index.html"]:hover {
    background-color: #c7d2fe;
}


ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

li a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px dashed #a5b4fc; 
}

li a:hover {
    color: #1e3a8a;
    border-bottom-style: solid; 
}


img {
    max-width: 100%; 
    height: auto;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #e5e7eb; 
    font-size: 0.9em;
    color: #6b7280;
}


hr {
    border: 0;
    height: 4px;
    background: #122059; 
    margin: 30px 0;
}

.photo-sticker-container {
    display: flex;          
    align-items: flex-start; 
    gap: 30px;               
    margin-bottom: 25px;     
    flex-wrap: wrap;         
}

.sticker {
    background-color: #fffbeb;        
    border: 2px dashed #f59e0b;       
    border-radius: 15px;              
    padding: 15px 20px;               
    max-width: 350px;                 
    box-shadow: 5px 5px 0 rgba(245, 158, 11, 0.2); 
    font-family: 'Caveat', cursive;
    color: #1f2937;                   
    align-self: center;               
    transform: rotate(0.5deg);        
}


.sticker:hover {
    transform: rotate(0deg) scale(1.02); 
    transition: transform 0.2s ease;
    box-shadow: 8px 8px 0 rgba(245, 158, 11, 0.25);
}

.classification-table {
    margin-bottom: 40px; 
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.header-title {
    flex: 1 1 auto;
}

.header-gif {
    flex: 0 0 auto;
    width: 120px;  
    height: auto;
}

.header-gif .tenor-gif-embed {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px;  
}

@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-gif {
        width: 60px;
        align-self: flex-end; 
    }
}