@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

*{
	box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: 'Lato', sans-serif
}

body{
	height :100%;
}

img{
	display: block;
	margin-top: 80px;
	margin-left: 260px;
}


a{
	font-weight: 900;
	font-size: 110px;
  color: black;
  text-decoration: none;
  display: inline-block;
  text-align: left;
  margin: 0;
  margin-left: 250px;
}

a.image{
	margin: 0;
	display: block;

}


@media (min-width: 600px),(min-width: 150px){
  a{
    font-size: 80px;
  }
}

@media(min-width: 800px){
  a{
    font-size: 110px;
  }

  }


.positioning{
	margin-left: 36px;
}


#wrapper {
	position:relative;
  min-height:100%;
}

#links{
	padding-bottom:230px;
}




/*푸터 부분*/

hr{
	margin-top: 60px;
	margin-left: 10%;
	margin-right: 10%;
}


#footer {
  position:absolute;
  bottom:0;
  width:100%;
  height:200px;
  margin-right: 12%;
}



#footer p{
  text-align: center;
}

.head{
  font-weight: 500;
  font-size: 14px;
  padding-top: 40px;
  padding-bottom: 15px;
}


.sub{
  font-size: 12px;
  font-weight: 300;
  padding-bottom: 20px;
}


.copyright{
  font-size: 10px;
  font-weight: 300;
  color: #616161;
  padding-top: 20px;
  padding-bottom: 40px;
}

.head2{
  font-weight: 500;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 15px;
}



/* 마우스 오버 시 밑줄 */
.underline{
  line-height: 1.2;
  background-image: linear-gradient(transparent calc(100% - 3px), #000 3px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.8s;
  color: #000;
  cursor: pointer;
}

@media (min-width: 1000px) {
}

.underline.color{
  background-image: linear-gradient(transparent 60%, #F8CD07 40%);
}

.underline:hover{
  background-size: 100% 100%;
}


