*{margin: 0; padding: 0;}
ul{list-style: none;}
a{text-decoration: none;}
 
header{
    width: 100%;
    background-color: #2d3a4b;
    position: relative;
    color: #ffffff;
    h1 {
        color: #ffffff;
    }
}

.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    grid-row-gap: 20px; /* 세로 간격 설정 */
    /*grid-column-gap: 20px; /* 가로 간격 설정 */
    /* padding: 20px; */
}

.image-container img {
    width: 100%;
    /* height: calc(100% * 4 / 3); 이미지의 세로 크기를 가로 크기의 4/3배로 설정 */
    /* object-fit: cover;
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}


body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
header {
    text-align: center;
    margin-bottom: 20px;
}
h1 {
    color: #333;
}
.dropdown-container {
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    justify-content: center; /* 가운데 정렬 */
    align-items: center;
    margin: 20px 0;
}

.execute-button {
    padding: 15px 30px; /* 버튼 내부 여백 조정 */
    font-size: 18px; /* 글자 크기 조정 */
    font-weight: bold; /* 글자 굵게 */
    background-color: #2d3a4b; /* 배경 색상 */
    color: white; /* 글자 색상 */
    border: none; /* 테두리 제거 */
    border-radius: 8px; /* 둥근 모서리 */
    cursor: pointer; /* 커서 모양 변경 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 그림자 추가 */
    transition: background-color 0.3s; /* 배경 색상 전환 효과 */
}

.execute-button:hover {
    background-color: rgba(45, 58, 75, 0.7); /* 호버 시 배경 색상 변경 */
}



select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 1em;
}
footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
}


footer{padding: 0px 10px;}
footer img{width: 100%;}