html, body {
    background: #EEE7DA;
}

#main {
    padding: 20px;
}

h1 {
    font-family: 'Poppins', sans-serif;
}

.box {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 8px;
    width: 700px;
    background: #fff;
}

.box-body {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 10px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 26px;
}

.box-footer {
    background: #D4E7C5;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px dashed #99BC85;
}

.box-footer a {
    text-decoration: none;
    color: #294B29;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.box-footer a:hover {
    color: #FF6868;
    text-decoration: underline;
}

.links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 150px;
}

.links a {
    text-decoration: none;
    background: #FF6868;
    color: #fff;
    border: 1px dashed #BF3131;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.links a:hover {
    color: #294B29;
    background: #D4E7C5;
    border: 1px dashed #99BC85;
}

@media screen and (max-width: 768px) {
    .box {
        width: 100%;
    }

    h1 {
        font-size: 20px;
    }

    .box-body {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 16px;
    }

    .links a{
        font-size: 14px;
    }
}