@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: white;
    font-family: 'Bebas Neue', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headline {
    margin-bottom: 20px;
    font-size: 2em;
}

.image {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
    margin-bottom: 20px;
}

.shop-link {
    background-color: #007BFF;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.5em;
    border-radius: 5px;
    
}

.shop-link:hover {
    background-color: #4eff00;
    text-color: #007BFF;
}

.tagline {
    margin-top: 200px;
    
}