@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700&family=Poppins:wght@100&display=swap');


:root {
    --primary:#4380BE;
    --dark:#17295D;
    --body:#6C86D3;
    --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

body{
    font-family: 'Nanum Gothic', sans-serif;
    line-height: 1.7;
    color:var(--body)
}

h1,h2,h3,h5,h6,.display-5{
    color:var(--dark);
    font-weight:700;
}

h4{
    color: var(--primary);
    font-weight:700;
}

a{
    color:var(--dark);
    text-decoration: none;
}

section{
    padding-top: 120px;
    padding-bottom: 120px;
}

.navbar .nav-link {
    color:rgb(22, 142, 223) !important;
    font-weight: 700;
}

.hero{
    background-color: #348ae1;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position:relative;
    z-index: 2;
}

.hero::after {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background-color: rgba(37, 39, 71, 0.146);
    z-index: -1;
}

.card-effect {
    box-shadow:var(--box-shadow);
    background-color: #fff;
    padding: 25px;
    
}



.iconbox{
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    font-size: 32px;
    background-color: var(--primary);
    border-radius: 100px;
    flex: none;
}







/*Insert Song section*/
.song {
    position: relative;
    overflow: hidden;
}

.song .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    padding: 30px;
    display: flex;
    align-items: flex-end;
    
}

img {
    width: 100%;
}

.song img {
    transition: all 0.4s ease;
}



.song:hover img {
    transform: scale(1.1);
    
}





/* character section*/
.chara-member img {
    width: 125px;
    height: 125px;
    border-radius: 100px;
}



/* contact section*/
form input.form-control{
    height: 56px;
}

form .form-control{
    border: transparent;
    border-radius: 0;
    background-color: rgba(0,0,0,0.04);
}

/* footer section*/

.footer-top{
    background-color: var(--dark);
    padding: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
}

.footer-top a{
    color:var(--body);
}

.footer-top a:hover {
    color:#fff;
}

.fa-brands{
    font-size: 20px;
    margin-top: 10px;
}

/* miurate section*/
.img-center{
    margin-top: 10px;
    
}

