body {
    background-image: url(/assets/images/ContactBackground.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-color: #641D77;
    outline: 10px solid #641D77;
    display: flex;
    min-height: 100vh;
    width: 100%;
    outline-offset: -10px;
}

a {
    color: #641D77;
}

a:hover {
    color: #8B489E;
}

.brand-button {
    color: #000;
    transition: color 0.2s;
    font-size: 30px;
}

.brand-button:hover {
    color: #641D77;
    transition: color 0.2s;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.title {
    text-align: center;
}

.texts-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    font-weight: bold;
}

.synth {
    z-index: -1;
    position: absolute;
    top: 100px;
    right: 40px;
    height: 200px;
    width: auto;
}

.guitar {
    height: auto;
    max-width: 350px;
}

.logo {
    z-index: -1;
    position: absolute;
    top: 40px;
    left: 40px;
    height: 200px;
    width: auto;
}

@media screen and (max-width: 1780px) {
    .synth {
        display: none;
    }
}

@media screen and (max-width: 1350px) {
    .logo {
        display: none;
    }
}