/* Root */
:root {
    --global-site-header-vertical-container-height: 48px;
    --global-section-vertical-container-height: 650px;
    
    --global-section-horizontal-container-max-width: 800px;
    --global-section-horizontal-container-min-width: 400px;
}

.global-section-vertical-container {
    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 12px;
    height: var(--global-section-vertical-container-height);

    width: 100%;
    
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.global-section-horizontal-container {
    display: flex;
    /*The flex-wrap: nowrap property prevents align-content from having an effect
      Try Setting flex-wrap to something other than nowrap*/
    flex-wrap: wrap;
    align-content: center;
    
    /*정당화하다... 라는 뜻인데...*/
    justify-content: center;
    
    max-width: var(--global-section-horizontal-container-max-width);
    min-width: var(--global-section-horizontal-container-min-width);

    height: 100%;
}

/* if max-width: 100vw then change width of global-section-horizontal-container and padding inside left and right*/
@media (max-width: 100vw) {
    .global-section-horizontal-container {
        width: 100vw;
        
        padding-left: 5px;
        padding-right: 5px;
    }
}


.global-footer-text {
    color: dimgray;
    text-align: center;
    font-size: 11px;
}
/* Width 가 768px 이하이면 OverFlow가 나타나도 가로 스크롤을 무시한다*/
/* 아래 내용은 Media Query라고 부른다 */
@media (max-width: 768px) {
    /* for general browser (Chrome, Edge, ...) */
    body {
        /*overflow-x: hidden;*/
    }
    
    /* for Safari */
    html {
        /*overflow-x: hidden;*/
    }
}