* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

html,
body {
    background-color: #DDDDDD;
    background-image: url(./assets/img/main/Grid.png);
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}

/*header*/
header {

    width: 100%;
    height: 120px;
    padding-top: 20px;


    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
     z-index: 10;
}

.logo {
    width: 160px;
    height: 94px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    left: 60px;
}


.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    position: absolute;
    right: 60px;
}

.menu li {
    background-color: #121710;

    font-family: "Pretendard";
    font-size: 16px;
    font-weight: 200;
    line-height: 160%;
    color: #FDFDF5;
    padding: 8px 20px;
}

.menu li a {
    text-decoration: none;
}

.menu li a:link {
    color: #FDFDF5;
}

.menu li a:visited {
    color: #FDFDF5;
}

/*content01*/
.content01 {


    width: 100vw;
    height: 100vh;

    display: flex;

    position: absolute;
    top: 0px;
    left: 0px;
}

.content01 section {
    width: 150px;
    height: min-content;


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    gap: 0px;

    position: relative;
    

}


.con01_title {
    background-color: #121710;
    display: flex;

    width: min-content;
    padding: 8px 12px;

    font-family: "Pretendard";
    font-size: 20px;
    font-weight: 600;

    color: #FDFDF5;
    position: relative;

    opacity: 0;
    visibility: hidden; 
}

.con01_title.hovering {
    opacity: 1;          
    visibility: visible; 
}

.item:not(.grabbing) .con01_img:hover {
  cursor: pointer;
}


.con01_title.hovering {
    opacity: 1;
}

.content01 section img {
    border: 3px solid #121710;
    background-color: #FDFDF5;
    padding: 16px;

    width: 150px;
    height: 150px;

    display: flex;
    justify-content: center;
    align-items: center;
}


.item.grabbing{
    cursor: move;
}

.content01 .me {
    width: 560px;
    height: min-content;

    position: inherit;
    right: 360px;
    bottom: 120px;
}

.me.item.grabbing {
    cursor: move;
}

.content01 .me img {
    width: 560px;
    height: 560px;

    padding: 36px;
}

.content01 .me .con01_title{
    background-color: #121710;
    display: flex;

    width: min-content;
    padding: 8px 12px;

    font-family: "Pretendard";
    font-size: 36px;
    font-family: 600;
    color: #FDFDF5;

    position: relative;
    opacity: 0;
}

.content01 .me .con01_title.hovering{
    background-color: #121710;
    display: flex;

    width: min-content;
    padding: 8px 12px;

    font-family: "Pretendard";
    font-size: 36px;
    font-family: 600;
    color: #FDFDF5;

    position: relative;
    opacity: 1;
}


.content01 .Media {
    position: inherit;
    right: 160px;
    top: 200px;
}

.content01 .Storytelling {
    position: inherit;
    right: 70px;
    bottom: 320px;
}

.content01 .Link {
    position: inherit;
    right: 150px;
    bottom: 60px;
}

.content01 .Interactive {
    position: inherit;
    left: 800px;
    top: 220px;
}

.content01 .Warmth {
    position: inherit;
    left: 680px;
    bottom: 360px;
}

.content01 .Story {
    position: inherit;
    left: 780px;
    bottom: 100px;
}


/*content02*/
.content02 {
    width: 600px;
    height: 480px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    gap: 20px;

    position: fixed;
    bottom: 60px;
    left: 60px;
    z-index: 10;
}

.content02 .title {
    background-color: #121710;

    width: 228px;

    padding: 16px 12px;

    font-family: "MoonHalo";
    font-size: 20px;
    color: #FEFEFE;

    position: relative;
}

.content02 .text {
    width: 100%;

    position: relative;
}

.content02 .text p {
    background-color: #121710;

    padding: 12px 20px 12px 16px;

    width: max-content;
    font-family: "Pretendard";
    line-height: 160%;
    font-size: 40px;
    color: #FEFEFE;
}

@font-face {
    font-family: 'MoonHalo';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2102-01@1.0/dalmoori.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}