body{
    background-color: #AE2012;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 2 1'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='1' gradientTransform='rotate(209,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23AE2012'/%3E%3Cstop offset='1' stop-color='%23BB3E03'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0' y2='1' gradientTransform='rotate(165,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23CA6702' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23CA6702' stop-opacity='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='2' y2='2' gradientTransform='rotate(228,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23CA6702' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23CA6702' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='2' height='1'/%3E%3Cg fill-opacity='0.5'%3E%3Cpolygon fill='url(%23b)' points='0 1 0 0 2 0'/%3E%3Cpolygon fill='url(%23c)' points='2 1 2 0 0 0'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
}
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);
@import url("https://use.fontawesome.com/releases/v6.5.1/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600&display=swap");

*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    background-color: #f9f9fd;
}
html::-webkit-scrollbar-thumb {
    background-color: #EE9B00;
    border-radius: 25px;
}
.menu{
    display: none;
}
.header{
    background-color: #AE2012;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px;
    font-family: 'Roboto';
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.header > a{
    color: white;
    text-decoration: none;
    padding: 14px 18px;
    font-size: 17px;
    border-radius: 30px;
    transition: opacity 0.5s ease;
}
.header > a:hover{
    color: #E9D8A6;
}
.header:hover > :not(:hover){
    opacity: 0.4;
}
@media(max-width: 768px){
    .header{
        display: none;
    }
    .menu{
        display: block;
        position: fixed;
        z-index: 10;
        height: 100%;
        width: 240px;
        background: #9b2226ea;
        top: 0;
        left: 0;
        padding-top: 10px;
        user-select: none;
        box-sizing: border-box;
        overflow: hidden;
        transition: width .05s linear;
        -webkit-tap-highlight-color: transparent;
    }
    .menu>ul>li>a{
        color: #E9D8A6;
    }
    .menu>ul{
        margin: 0;
        padding: 0;
    }
    .menu>ul,li{
        outline: 0;
    }
    .menu>ul>li>a{
        text-decoration: none;
    }
    .menu>ul>li{
        position: relative;
        display: block;
    }
    .menu>ul>li>a{
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 25px;
        padding: 10px 15px;
        gap: 24px;
        transition: all 0.1s linear;
    }
    .menu>ul>li>a>i{
        min-width: 30px;
        font-size: 25px;
        text-align: center;
    }
    .nav-text{
        font-family: "Mulish", sans-serif;
    }
    .menu>ul>li:hover>a,
    .menu>ul>li.active>a,
    .menu>ul>li>a:focus{
        text-decoration: none;
        color: #FFF;
        background-color: #bb3d0349;
    }
    .menu{
        width: 70px;
    }
    .menu:hover,
    .menu:active{
        width: 240px;
        overflow: visible;
    }
    .container{
        margin-left: 200px;
    }
}
  /* /////////////////////////////////////////////// */

  .container {
    margin: 20px auto;
    max-width: 600px;
    background-color: #ECD0A0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
  }

  .container img {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .actions button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #AE2012;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .actions button:hover {
    background-color: #9d1b0f;
  }

  @media(max-width: 768px){
    .container{
        margin-top: 50px;
        margin-left: 70px;
    }
    .actions{
        display: inline;
        
    }
    .actions button {
        margin-top: 10px;
    }
}
