@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;1,700&display=swap);

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    margin: 0
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace
}

.recipe_recipe__2U7Ya {
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px #474747;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 20px;
    min-width: 40%;
    padding: 10px
}

.recipe_image__HJJtc {
    border-radius: 5px;
    height: 50%;
    margin-bottom: 25px
}

.App {
    -webkit-animation: gradient 15s ease infinite;
    animation: gradient 15s ease infinite;
    background: linear-gradient(-45deg, #fbc2eb, #a6c1ee, #fbc2eb, #a6c1ee);
    background-size: 400% 400%;
    font-family: Roboto, sans-serif;
    min-height: 100vh
}

@-webkit-keyframes gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

@keyframes gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

.search-form {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 10vh
}

.search-bar {
    border: none;
    box-shadow: 0 5px 20px #474747;
    padding: 10px;
    width: 50%
}

.search-button {
    background: #111;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    margin-left: 10px;
    outline: none;
    padding: .6em 2em;
    position: relative;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    z-index: 0
}

.search-button:before {
    -webkit-animation: glowing-button-85 20s linear infinite;
    animation: glowing-button-85 20s linear infinite;
    background: linear-gradient(45deg, red, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, red);
    background-size: 400%;
    border-radius: 10px;
    content: "";
    filter: blur(5px);
    -webkit-filter: blur(5px);
    height: calc(100% + 4px);
    left: -2px;
    position: absolute;
    top: -2px;
    transition: opacity .3s ease-in-out;
    width: calc(100% + 4px);
    z-index: -1
}

@-webkit-keyframes glowing-button-85 {
    0% {
        background-position: 0 0
    }

    50% {
        background-position: 400% 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0
    }

    50% {
        background-position: 400% 0
    }

    to {
        background-position: 0 0
    }
}

.search-button:after {
    background: #222;
    border-radius: 10px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.recipes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around
}

/*# sourceMappingURL=main.70645af3.css.map*/