@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/static/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/static/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Young Serif';
    src: url('../fonts/young-serif/YoungSerif-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


body {
    background-color: blanchedalmond;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

h1,
h2,
h3 {
    font-family: 'Young Serif', serif;
}

.box {
    width: 650px;
    height: 1720px;
    background-color: white;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.box h2 {
    color: darkred;
}

.box .pink-box {
    background-color: rgb(251, 237, 240);
}

.box .pink-box h3 {
    color: purple;
    padding-left: 20px;
    padding-top: 20px;
    height: 50px;
}

.box .pink-box ul li {
    padding-left: 20px;
    padding-bottom: 20px;
}

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

.box table tr {
    border-bottom: 1px solid #ccc;

}

.box table tr:last-child {
    border-bottom: none;
}

.dark-red {
    color: darkred;
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

@media (max-width: 768px) {
    .box {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .box {
        padding: 15px;
        border-radius: 15px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }

    .box table {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .box {
        padding: 10px;
    }

    .box table {
        font-size: 12px;
    }
}