/* ###################### 로고 및 메뉴 ###################### */

body{
    background-color: aliceblue;
    margin: 0;
}

.all{
    background-color: rgb(43, 95, 226);
}

.mouse-memoirs-regular {
    font-family: "Mouse Memoirs", sans-serif;
    font-weight: 400;
    font-style: normal;
}  

.navbar {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo_text {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 50px;
    font-weight: bold;
}

.special-gothic-condensed-one-regular {
    font-family: "Special Gothic Condensed One", sans-serif;
    font-weight: 400;
    font-style: normal;
}  

a {
    color: rgb(244, 254, 255);
    text-decoration: none;
    font-size: 25px;
} 

.menu{
    display: flex;
    justify-content: center;
}

.menu ul{
    list-style-type: none;
    display: flex;
    margin-top: 15px;
    margin-right: 170px;
}

.menu ul li{
    margin-left: 120px;
}

#check{
    color: rgb(141, 227, 255);
    text-decoration: underline;
}


/* 내용 */
.content{
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: space-between;
    margin-top: -100px;
}
.member{
    margin: auto;
    height: 80%;
    width: 23%;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0, 0, 0);
}
.img_1{
    background: url(../img/부럽이.jpg);
    background-size: cover;
    width: 220px;
    height: 220px;
    margin: auto;
    margin-top: 35px;
    border-radius: 10px;
}
.img_2{
    background: url(../img/까칠이.jpg);
    background-size: cover;
    width: 220px;
    height: 220px;
    border-radius: 10px;
    margin: auto;
    margin-top: 35px;
}
.img_3{
    border-radius: 10px;
    background: url(../img/따분이.jpg);
    background-size: cover;
    width: 220px;
    height: 220px;
    margin: auto;
    margin-top: 35px;
}
.img_4{
    border-radius: 10px;
    background: url(../img/버럭이.jpg);
    background-size: cover;
    width: 220px;
    height: 220px;
    margin: auto;
    margin-top: 35px;
}
.info_1{
    width: 270px;
    height: 35px;
    margin: auto;
    margin-top: 40px;
}
.info_2{
    width: 220px;
    height: 35px;
    border: 1px solid black;
    box-shadow: 0 0 10px rgb(97, 97, 97);
    border-radius: 10px;
    margin: auto;
    margin-top: 70px;
    text-align: center;
    line-height: 35px;
}
.info_2 a{ 
    color: black;
    font-size: 15px;
}
.info_3{
    text-align: center;
    width: 220px;
    height: 35px;
    margin: auto;
    border: 1px solid black;
    box-shadow: 0 0 10px rgb(97, 97, 97);
    border-radius: 10px;
    line-height: 35px;
}
.info_3 a{
    color: black;
    font-size: 15px;
}
.info_li{
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    padding: 0 10px 0 10px;
}

@media screen and (max-width: 1300px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .member {
        width: 80%; 
        margin-bottom: 30px;
    }

    .info_3{
        margin-bottom: 70px;
    }

    .content{
        margin-top: 0px;
    }
}
