:root {
    --black: #17191E;
    --cream: #F6F4EA;
    --blue: #0A5DC9;
    --orange: #E85324;
}

html {
    font-family: "massilia", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
    min-height: 100%;
    background-color: var(--cream);
}

body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    min-height: 100vh;
    text-align: center;
    background-image: url(/Images/bg.svg);
    background-position: center;
    background-size: cover;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin: 16px;
}

main img {
    display: block;
    max-width: 100%;
}

.logo {
    z-index: 1;
    margin: 80px 16px 16px;
}

.cocktail1 {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 280px;
    z-index: 0;
}

.cocktail2 {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 150px;
    z-index: 0;
}

footer {
    background: linear-gradient(0, #f6f4ea, #f6f4ea00);
    padding: 80px 16px 16px;
    z-index: 1;
}

footer p {
    margin-bottom: 0;
}

footer a {
    color: var(--black);
    text-decoration: none;
    border-bottom: none;
    transition: all .3s ease;
}

footer a:hover {
    color: var(--blue);
    border-bottom: #E85324 1px solid;
}

@media screen and (max-width: 480px) {
    .cocktail1 {
        display: none;
    }

    .cocktail2 {
        max-width: 120px;
    }
  }