/* Resets */
body, p {
    margin: unset;
}

ul {
    padding: unset;
    margin: unset;
    list-style-type: none;
}

button {
    all: unset;
}

img {
    vertical-align: top;
}

h1, h2 {
    margin: unset;
    font-size: unset;
    font-weight: unset;
}

/* Typography */
:root {
    font-family: 'Noto Sans KR';
}

/* CSS Components */
.app {
    min-height: 100vh;
    display: flex;
    background-image: url(images/bg2.jpg);
    background-size: cover;
    position: relative;
    z-index: 1;
}

.app::after {
    content: ' ';
    opacity: 40%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: black;
}

.app-center {
    margin: auto;
    padding: 30px;
    max-width: 640px;
}

.section-header h1{
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 13px;
    color: white;
    padding: 20px;
}

.section-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    background-color: #ffd076;
    box-shadow: 8px 8px 0 0 #b59048;
    border-radius: 14px;
}

.section-list li {
    box-shadow: inset 0 0 20px red;
    background-color: white;
    display: flex;
    padding: 15px;
    align-items: center;
    border-radius: 14px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    border: solid 4px #ffd076;
}

.section-list li:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

.list-cover {
    max-width: 90px;
    max-height: 90px;
    margin-right: 25px;
    border: 4px solid #ffd076;
    border-radius: 50%;
    cursor: pointer;
}

.list-cover:hover {
    border: solid 4px salmon;
    box-shadow: 4px 2px 4px 0 rgba(0,0,0,0.25);
}

.list-contents h2 {
    font-size: 22px;
    font-weight: 600;
    color: #3d3d3d;
}

.list-contents p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    min-width: 200px;
}

.actions {
	display: flex;
	gap: 4px;
    margin-top: 60px;
}

.actions a {
    width: 25px;
    height: 25px;
    text-indent: -999px;
    background-image: url(images/sprite2.png);
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}

.actions a:hover {
    background-image: url(images/sprite.png);
}

.actions a.type_heart {
	background-position: left;
}

.actions a.type_view {
	background-position: center;
}

.actions a.type_pay {
	background-position: right;
}






