/*
M/P
M : Margin
P : Padding

t , b , l , r ,x , y
t : top
b : bottom
l : left
r : right
x : x축 -> left , right
y : y축 -> top , bottom

0, 1, 2, 3, 4, 5, auto
0 : 0
1 : .25rem( font-size가 16px이면, 4px) 크기
2 : .5rem( font-size가 16px이면, 8px) 크기
3 : 1rem( font-size가 16px이면, 16px) 크기
4 : 1.5rem( font-size가 16px이면, 24px) 크기
5 : 3rem( font-size가 16px이면, 48px) 크기
auto : margin의 자동으로 세팅

n1, n2, n3, n4, n5
n : negative을 의미
n1 : -.25rem( font-size가 16px이면, -4px) 크기
n2 : -.5rem( font-size가 16px이면, -8px) 크기
n3 : -1rem( font-size가 16px이면, -16px) 크기
n4 : -1.5rem( font-size가 16px이면, -24px) 크기
n5 : -3rem( font-size가 16px이면, -48px) 크기
*/
.mt-2{
  margin-top:.5rem;
}
.mt-3{
  margin-top:1rem;
}
.mt-5{
  margin-top:3rem;
}
.mb-2{
  margin-bottom:.5rem;
}
.p-0{
  padding:0!important;	
}
.p-3{
  padding:1rem;	
}

.text-decoration-none,
.text-decoration-none *{
  text-decoration:none;
}
