@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@500&display=swap');

*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

* {
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Roboto', sans-serif;
}

header {
    background-color: rgb(254, 127, 0);
    color: white;
    display: flex;
    height: auto;
    justify-content: space-around;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.logo-header {
    display: flex;
    font-size: 25px;
    padding: 0;
    width: 180px;
}

.menu-header {
    align-items: center;
    display: flex;
    justify-content: space-around;
    width: 80%;
}

.menu-header > a {
    color: black;
    font-size: 30px;
    text-decoration: none;
}
  
.background-image {
    width: 100%;
    height: auto;
}
  
.logo-kebab-presentation {
    position: absolute;
    top: 45%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    max-width: 50%; 
}

.logo-kebab-presentation img {
    max-width: 100%;
}

.kebab-presentation > img {
    width: 100%;
}

.presentation-text {
    display: flex;
    font-size: 20px;
    justify-content: center;
    padding: 100px;
    text-align: center;
    width: 100%;
}

.presentation-text > p {
    width: 70%;
    letter-spacing: 1px;
    line-height: 30px;
}

.presentation-text > p::first-letter {
    font-size: 50px;
}

.menu-button {
    display: flex;
    justify-content: center;
    width: 100%;
}

.menu-button > a > button {
    border-radius: 20px 10px;
    border: 5px solid rgb(254, 127, 0);
    font-size: 30px;
    padding: 10px 20px;
}

.menu-button > a > button:hover {
    background-color: rgb(254, 127, 0);
    color: white;
}

@media (max-width: 768px) {
    header {
        height: 10vh;
        padding: 5px 0;
    }
    .logo-header {
        display: none;
    }
    .menu-header {
        width: 100%;
    }
    .menu-header > a {
        font-size: 25px;
    }

    .kebab-presentation {
        position: absolute;
        margin-top: 10vh;
    }
    .logo-kebab-presentation {
        position: absolute;
        max-width: 30%; 
    }
    .logo-kebab-presentation img {
        max-width: 100%;
    }
    .kebab-presentation > img {
        width: 100%;
    }

    .presentation-text {
        padding: 0;
        position: absolute;
        margin-top: 35vh;
    }

    .presentation-text > p {
        width: 90%;
    }
    
    .menu-button {
        position: absolute;
        margin-top: 255vh;
    }
}