@font-face {
    font-family: "outfit";
    src: url("assets/fonts/outfit/Outfit-VariableFont_wght.ttf"), format("truetype");
}

:root {
    --maincolor: #f3e5d8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'outfit', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--maincolor);
}

.container {
    width: 600px;
    height: fit-content;
    background-color: white;
    margin: 40px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.content {
    padding: 30px;

}

@media (max-width:767px) {
    .container {
        width: 100%;
        margin: 0;

    }
}

img {
    width: 100%;
    padding: 30px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

@media (max-width:767px) {

    img {
        padding: 0;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

}

h1 {
    margin: 15px 0;
}

p {
    color: #777;
    margin-bottom: 20px;
}

.box {
    background-color: var(--maincolor);
    padding: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 40px;
}

.box h3 {
    color: #8d395d;
    margin-bottom: 15px;
}

ul {
    margin-left: 25px;
}

li {
    margin-bottom: 10px;

}

h3 {
    color: #7d4736;
    font-size: 28px;
    margin-bottom: 20px;
}

hr {
    margin: 20px 0;
}

ol {
    margin-left: 20px;
    line-height: 1.5;
}

table {
    width: 100%;
    border-collapse: collapse;
}


td {

    padding: 10px 100px;

}

tr {
    border-bottom: 1px solid #ddd;
}

@media (max-width:767px) {
    td {
        padding: 10px 60px;
    }

}


td:first-child {
    color: #777;
    font-weight: bold;
}

td:last-child {
    color: #7d4736;
    font-weight: bold;
}

tr:last-child {
    border-bottom: none;
}