/*  */
@font-face { font-family: Pacifico; src: url('./Pacifico/Pacifico-Regular.ttf'); } 
@font-face { font-family: TwinkeStar; src: url('./Twinkle_Star/TwinkleStar-Regular.ttf'); } 

.container {
    display: flex;
    flex-direction: column;
    
}

.vertical-item{
    flex-grow: 1;
    
}

.center-vertical {
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}

body {
    background-color: #f6e4cc;
    display: grid;
    height: 98vh;
}

.header {
    font-family: Pacifico, sans-serif; 
    font-size: 4vh;
    /* font-weight: bold; */
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
    color: #dd4e40;
}



.title {
    /* font-size: 4vh; */
    font-size: 8vh;
    font-style: italic;
    color: #dd4e40;
}

.recipe-text {
    font-family: TwinkeStar, sans-serif; 
    font-size: 2.4vh;
    letter-spacing: 2px;
    /* font-weight: normal; */
    margin: 0;
    color: #51392d;
}

.loader {
    width: 90px;
    height: 90px;
    border: 5px solid #dd4e40;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

#recipe-ingredients {
    list-style-type: none;
    width: 80%;
    margin: 0 auto;
}


#recipe-method {
    width: 80%;
    margin: 0 auto;
}
.hide {
    display: none;
}

.highlight-ingredient {
    font-weight: bold;
}

.new-recipe-button {

    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    padding: 0 30px;
    border-radius: 4px;
    color: #dd4e40;
    background: transparent;
    line-height: .15;
    font-family: Pacifico, sans-serif; 
    font-size: 2.4vh;
    letter-spacing: 2px;
    height: 60px;
    word-spacing: 0px;
    letter-spacing: .0892857143em;
    text-decoration: none;
    min-width: 64px;
    border: 2px solid #dd4e40;
    text-align: center;
    transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1);
   

}

.new-recipe-button:hover {
    background: #fff3e3;
 }