body {
    background-image: url(https://artificialdeath.b-cdn.net/funeralelegy-website/base%20assets/background-2.jpg);
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-position: center;
    background-size: cover;
}

.wrapper {
    margin: 0;
    width: 100%;
    padding: 0px 10px;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
  display: grid; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr; 
  grid-template-rows: 0.7fr 1.3fr 1fr 1fr 1fr 1fr 1fr 1fr 1.3fr 0.7fr; 
  gap: 10px 10px; 
  grid-auto-flow: row;
}

.top-right-container {
    position: absolute;
    top: 10px;
    right: -25px;
    width: 80px;
    height: 30px;
    background: #ff0000;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}

.top-right-container a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff !important;
    box-sizing: border-box !important;
}

.top-right-container a:hover {
    background: #000;
    text-shadow: none !important;
}

.changelog { 
    grid-area: 2 / 4 / 10 / 8;
    background: #000000;
    width: auto;
    height: auto;
    font-size: 15px;
    padding: 30px;
    border-left: 2px solid #ff0000;
    box-shadow: 15px -15px 0px #00000098;
    position: relative;
}

.folder-tab {
    position: absolute;
    left: -40px;
    top: 0px;
    width: 40px;
    padding: 10px 0px;
    height: 140px;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 80%, 0 0);
}

.changelog-container {
    padding: 10px;
    height: 600px;
    overflow-x: hidden;
    overflow-y: scroll;
}


.changelog hr {
    border: none;
    border-top: 2px solid #ff0000;
    background-color: #ff0000;
    height: 2px;
    margin: 20px 0;
}

.description {
    text-indent: 20px;
}

.changelog a {
color: #ff0000;
text-decoration: none;
}

.changelog a:hover {
    text-shadow: #fff 0px 0px 5px;
}

/* Large tablet/small desktop breakpoint */
@media (max-width: 1200px) and (min-width: 1025px) {
    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 50px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header { 
        order: 1;
        width: 100%;
        box-sizing: border-box;
    }

    .section-1 {
        width: 100%;
        padding: 30px;
        box-sizing: border-box;
    }
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    
     html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 50px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header { 
        order: 1;
        width: 100%;
        box-sizing: border-box;
    }

    .section-1 {
        width: 100%;
        padding: 30px;
        box-sizing: border-box;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) and (min-width: 481px) {
     html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 50px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header { 
        order: 1;
        width: 100%;
        box-sizing: border-box;
    }

    .section-1 {
        width: 100%;
        padding: 30px;
        box-sizing: border-box;
    }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 50px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header { 
        order: 1;
        width: 100%;
        box-sizing: border-box;
    }

    .section-1 {
        width: 100%;
        padding: 30px;
        box-sizing: border-box;
    }
}