body{
    font-family: 'Nanum Gothic', sans-serif;
    color: #555 !important;
    
}

.header {
    width: 100%;
    height: 300px;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
}


#wrapper, #footer{
    margin: auto;
    padding: 1em;
    width: 95%;
}

a, a:visited{
    text-decoration: none;
    color: #333333;
    line-height: 30px;
}

a:hover{
    text-decoration: underline;
}

nav{
    display: flex;
    background: #eeeeee;
    padding-left: 1em;
}
nav li {
    position: relative;
    list-style: none;
    flex-direction: column;
    padding-right: 1.5em;
}

nav a.nav-link, nav a.nav-link:visited{
    text-decoration: none;
    color: #eacecf;
    line-height: 30px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 25vh;
    background-color: transparent;
}

.redbubble {
    display: flex;
    align-items: center;
    justify-content: left;
    min-height: 25vh;
    background-color: #ffffff;
}

h1{
    display: block;
    border-bottom: #939393 1px solid;
    margin-bottom: 1em !important;
    padding-bottom: 0.5em !important;
    width: 100%;
}

h2{
    display: block;
    margin: 2em 0;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    align-items: center;
}

.product img, .product a {
    width: 20%;
    height: auto;
    border-radius: 5px;
    margin-right: 10px;
}

.product img{
    width: 100% !important;
}
.product-info {
    width: 80%;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-description {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
    text-align: left;
}

.product-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00aaff;
}

@media (max-width: 480px) {
    .product {
        flex-direction: column;
        text-align: center;
    }
    .product img {
        width: 100%;
        margin-right: 0;
    }
    .product-info {
        width: 100%;
    }
}


.loader {
max-width: 5rem;
width: 100%;
height: auto;
stroke-linecap: round;
}

circle {
fill: none;
stroke-width: 3.5;
-webkit-animation-name: preloader;
        animation-name: preloader;
-webkit-animation-duration: 3s;
        animation-duration: 3s;
-webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
-webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
transform-origin: 170px 170px;
will-change: transform;
}

circle:nth-of-type(1) {
stroke-dasharray: 550px;
}

circle:nth-of-type(2) {
stroke-dasharray: 500px;
}

circle:nth-of-type(3) {
stroke-dasharray: 450px;
}

circle:nth-of-type(4) {
stroke-dasharray: 300px;
}

circle:nth-of-type(1) {
-webkit-animation-delay: -0.15s;
        animation-delay: -0.15s;
}

circle:nth-of-type(2) {
-webkit-animation-delay: -0.3s;
        animation-delay: -0.3s;
}

circle:nth-of-type(3) {
-webkit-animation-delay: -0.45s;
        animation-delay: -0.45s;
}

circle:nth-of-type(4) {
-webkit-animation-delay: -0.6s;
        animation-delay: -0.6s;
}

@-webkit-keyframes preloader {
50% {
    transform: rotate(360deg);
}
}

@keyframes preloader {
50% {
    transform: rotate(360deg);
}
}


.articleBox{
    text-align: center;
    padding: 0.5em;
    border: #eeeeee 1px solid;
}

.articleBox p{
padding: 0.5em;
}

.articleBox img {
margin-left: auto;
margin-right: auto;
width: 100%;
}

.portfolio-container{
    margin-bottom: 2em;
    padding:0;
}

.portfolio{
    margin: 0;
}

.portfolio-image{
    width: 250px !important;
}

.portfolio img{
    border: 2px solid #5dbaee !important;
    width: 250px;
}

.portfolio h2{
    font-size: 150%;
    margin-top: 0;
}

.portfolio-text{
    padding-left: 1em;
}