
#section-wrapper > section > #links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
#section-wrapper > section > #links > ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    width: 100%;
    margin: 0 100px;
    padding: 0;
    @media screen and (max-width: 800px) {
        margin: 0 20px;
    }
}
#section-wrapper > section > #links > ul > li {
    display: flex;
    gap: 30px;
    flex-basis: 0;
    flex-grow: 1;
}
#section-wrapper > section > #links > ul > li > a {
    width: 100%;
}
#section-wrapper > section > #links > ul > li > a > button {
    width: calc(100% - 20px);
    height : 50px;
    padding: 10px;
    margin : 10px;
    background-color: #742424;
    border-radius: 10px;
    font-family: "Nanum Gothic", sans-serif;
    font-size : 1.2em;
    @media screen and (max-width: 800px) {
        width: calc(100% - 10px);
        padding: 5px;
        margin : 5px;
        font-size: 0.7em;
    }
}
#section-wrapper > section > #links > ul > li > a > button#home {
    border : 3px solid #671d02;
    background-color: #f0f0f0;
    @media screen and (max-width: 800px) {
        font-size: 1.0em;
    }
}
#section-wrapper > section > #links > ul > li > a > button#rent {
    border : 3px solid #005a0c;
    background-color: #f0f0f0;
    @media screen and (max-width: 800px) {
        font-size: 1.0em;
    }
}
#section-wrapper > section > #links > ul > li > a > button#status {
    border : 3px solid #11005e;
    background-color: #f0f0f0;
    @media screen and (max-width: 800px) {
        font-size: 1.0em;
    }
}

#notice {
    margin: 30px 100px;
    padding: 0px;
    height: auto;
    border-radius: 10px;
    background-color: #bdbdbd;
    @media screen and (max-width: 800px) {
        margin: 30px 20px;
    }
}
#notice-title {
    text-align: center;
    font-size: 1.5em;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
    background-color: #16a198;
}
#notice-title > h2 {
    margin: 5px;
    color: white;
    font-size: 1.3em;
}
#notice-content {
    padding: 10px;
    font-size: 1.2em;
}
#notice-content > p {
    margin: 5px;
    overflow:auto;
}
