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

body {
    position: relative;
    display: flex;
    flex-direction: column;
    /*background-color: rgba(33, 37, 41);*/
    background-color: rgb(24, 24, 24);
    width: 100%;

    min-height: 100vh;
    height: fit-content;
}

header {
    width: 100%;
    /*background-color:  rgba(43, 48, 53);*/
    /*background-color: rgb(43, 101, 85);*/
    /*background-color: rgb(43, 96, 101);*/
    background-color: rgb(29, 65, 68);
}

.recipe-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #7c7c7c;
    /*height: 200px;*/
    display: flex;
    justify-content: center;
    align-items: center;

    object-fit: contain;
}

main {
    min-height: 90vh;
}