body {
    background-image: url(/assets/images/EssentielBackground.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-color: #612DAF;
    outline: 10px solid #612DAF;
    display: flex;
    min-height: 100vh;
    width: 100%;
    outline-offset: -10px;
}

a {
    color: #612DAF;
}

a:hover {
    color: #8A61C7;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.title {
    text-align: center;
}

.guitar {
    z-index: -1;
    position: absolute;
    top: 100px;
    right: 40px;
    height: 300px;
    width: auto;
}

.logo {
    z-index: -1;
    position: absolute;
    top: 40px;
    left: 40px;
    height: 200px;
    width: auto;
}

@media screen and (max-width: 1450px) {
    .guitar {
        display: none;
    }
}

@media screen and (max-width: 1520px) {
    .logo {
        display: none;
    }
}