nav{
    font-size: 20px;
    color:white;
    background-color: #333;
    overflow: hidden;
}

header.head1{
    background-color: #333;
    color: whitesmoke;
    text-align: center;
    padding: 10px 0;
    margin: 0;
}

.footer{
    background-color: #333;
    color: #ddd;
    padding: 20px 40px;
    font-size: 14px;
    left: 0; 
    bottom: 0;
    width: 100%;
    position: relative;
}

.footer-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 80px;
    margin-right: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-links li{
    display: inline;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-middle{
    text-align: left;
    flex-grow: 1;
    margin: 0; 
    font-size: 12px;
    line-height: 1.6;
}

.footer-middle a{
    color: #ddd;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.footer-badges img {
    max-width: 80px;
    margin-left: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    padding: 14px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

nav ul li a:hover {
    background-color: #575757;
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
}

nav ul li a.active {
    background-color: #444; /* 활성 링크 배경색 */
    border-radius: 4px;
}

body{
    background-attachment: fixed;
    background-image: url("/static/images/assets/GHAOCV-bMAAIpNK.jpeg");
    background-size: cover; 
    background-repeat: no-repeat;
}

.image-container{
    display: flex;
    padding: 10px;
    justify-content: space-between;
}

.image-container img{
    width: 22%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 5px solid #4CAF50;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}