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

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

body{
    background-color: beige;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit';
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.main{
    background-color: white;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    height: 100%;
    padding: 20px;
}

img{
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.preparation-block{
    width: 80%;
    height: 80%;
    background-color: gainsboro;
    border-radius: 10px;
    padding: 20px;
}
.preparation-block p{
    color: purple;
    font-size: larger;
}

ol ::marker{
    color: brown;
    font-size: larger;
}

h1{
    font-family: 'Young-Serif';
}

h2{
    font-family: 'Young-Serif';
    color: brown;
    border-top: 1px solid gainsboro;
    border-width: 80%;
    padding-top: 20px;
}

th, tr{
    border-bottom: 1px solid gainsboro;
    color: brown;
}

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

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

@media (max-width: 600px){
    .container{
        min-height: 100vh;
        width: 100vw;
    }
    .main{
        width: 100vw;
        max-width: 100vw;
        border-radius: 0;
        padding: 10px;
    }
    img{
        border-radius: 0;
    }
}