@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

* {
    font-family: "Pretendard Variable", system-ui;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    background-color: white;

    display: flex;
    flex-direction: column;
    padding: 0px 20px;
}

.header {
    text-align: left;
    padding: 20px;
    background-color: #4a90e2;
}

.header h1 {
    font-size: 20px;
    color: white;
}

.content-section {
    width: 100%;
}

.guide-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-info {
    text-align: left;
}

.step-info h2 {
    font-size: 24px;
    color: #4a90e2;
    margin-top: 40px;
}

.step-info p {
    color: #555;
    font-weight: 300;

    font-size: 16px;
    line-height:1.4;
    margin-top: 4px;
}

.step-image {
    width: 100%;
    max-width: 100%;

    margin-top: 20px;
    margin-bottom: 108px;
    border-radius: 8px;
    /* box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1); */
    border:1px solid #d8d8d8;
}

.footer {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-button {
    width: 100%;
    height:48px;

    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    text-align: center;
    
    border: none;
    text-decoration: none;

    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
}

.footer #prevBtn {
    background-color: #E7E7E7;
    color:#333;
}

.footer #nextBtn {
    background-color: #4B90E2;
    color:white;
}