* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: url(img/hamburguesa-elite.jpg) no-repeat center/cover;
}

h1 {
    color: red;
}

/*Content*/

#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    width: 80vh;
    max-width: 600px;
    background-color: white;
    border: 4px solid black;
}

h1 {
    font-size: 3rem;
    width: 100%;
    margin: 20px 10px;
}

#link {
    color: black;
    font-style: italic;
}

ul {
    width: 100%;
    height: 100%;
}

.topping {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    margin: 15px 0;
}

.bkg-brown {
    background-color: brown;
}

.bkg-orange {
    background-color: orange;
}

.magic {
    color: yellow;
}