/* Global */

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
  /* line-height: 1; */
  font-family: 'Open Sans', sans-serif;
  font-family: 'Montserrat', sans-serif;
  font-family: 'Noto Sans KR', sans-serif;
  height: 100vh;
  width: 100%;
  background-color: var(--color-azure);
  display: flex;
  justify-content: center;
  align-items: center;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* page css */

:root {
    /* Color */
    --color-white: #ffffff;
    --color-light-white: #ebebeb;
    --color-dark-white: #bdbdbd;
    --color-blue: #B6CDF6;
    --color-azure: #a6c8ea;
    --color-royal-azure: #003fff;
    --color-dark-azure: #003399;
    --color-grey: #616161;
    --color-light-grey: #e1e0e0;
    --color-dark-grey: #4d4d4d;
    --color-deep-blue: #140968;
    --color-black: #0a0909;
    --color-dark-blue: #1f2eb7;
    --color-mid-grey: #4e4e4e;
    --color-planblue: #003280;
    --color-planblue-gn: #249c17;
  
    /* Font size */
    --font-large: 40px;
    --font-mid-medium: 25px;
    --font-medium: 23px;
    --font-mid-regular: 20px;
    --font-regular: 17px;
    --font-small: 15px;
    --font-micro: 13px;
    --font-mini: 11px
  
    /* Font weight */
    --weight-bold: 700;
    --weight-semi-bold: 600;
    --weight-regular: 400;
  
    /* Size */
    --size-border-radius: 4px;
  
    /* Annimation */
    --animation-duration: 300ms;
}
  
  /* Universal tags */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
a {
    text-decoration: none;
    color: var(--color-white);
}
  
ul {
    padding-left: 0;
}
  
li {
    list-style: none;
    text-align: left;
}
  
button {
    background-color: transparent;
    cursor: pointer;
    border: none;
    outline: none;
}

/* *Title container */

.title-container {
    position: absolute;
    display: flex;
    justify-content: center;
    font-size: 36px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    padding-top: 50px; 
}

.welcome {
    color: var(--color-white);
    padding-right: 10px;
}

.url {
    color: coral;
    padding-left: 10px;
}

/* Door container */

.door-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: first baseline;
    width: 50%;
    height: 400px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.door {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: cornflowerblue;
    width: 50%;
    height: 100%;
    perspective: 1000px;
}

#ldoor{
    top: 0;
    left: 0;
    border-right: 1px solid coral;
    transition: transform 5s;
    transform-origin: left;
}

#rdoor{
    top: 0;
    right: 0;
    border-left: 1px solid coral;
    transition: transform 5s;
    transform-origin: right;
}

/* *Door Swing Effect */

.door:hover #ldoor {
    transform: rotateY(-140deg);
}

.door:hover #rdoor {
    transform: rotateY(140deg);
}

/* *Footer container */

.footer-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-self:last baseline;
    width: 100%;
    height: auto;
}

.footer-bottom {
    padding: 50px 0 ;
  }
  
.footer-bottom p {
    justify-items: baseline;
  }
  
.footer-legal p{
    color: var(--color-white);
    font-size: var(--font-small);
    margin: 0px;
  }
  



