.recipe {
    margin: 0;
    position: absolute;
    top: 400vh;
    height: 100vh;
    width: 100vw;
    background: url("../img/recipe.jpg") no-repeat;
    background-size: cover;
    color: white;
}

.recipe-title {
    font-family: "Xirod", sans-serif;
    letter-spacing: 3px;
    font-size: 36px;
    display: flex;
    justify-content: center;
    margin-top: 5vh;
}

.drink-name {
    font-family: "Xirod", sans-serif;
    letter-spacing: 3px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    margin-top: 5vh;
}

.recipe-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5vh;
}

.recipe-info {
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.recipe-info img {
    box-shadow: 0 0 7px white,
    0 0 42px aqua;
}

.recipe-text {
    width: 60%;
}

.recipe-info p {
    font-family: "Xirod", sans-serif;
    letter-spacing: 2px;
    font-size: 18px;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 7vh;
}

.recipe-button {
    background-image: linear-gradient(to right, #006175 0%, #00a950 100%);
    border-radius: 40px;
    box-sizing: border-box;
    color: #00a84f;
    display: block;
    height: 50px;
    font-size: 1.4em;
    padding: 4px;
    position: relative;
    text-decoration: none;
    width: 7em;
    z-index: 2;
}

.recipe-button:hover {
    color: #fff;
}

.recipe-button .recipe-span {
    align-items: center;
    background: #0e0e10;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    height: 100%;
    transition: background 0.5s ease;
    width: 100%;
}

.recipe-button:hover .recipe-span {
    background: transparent;
}