body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #32011a;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

header {
    padding: 20px;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.column {
    text-align: right;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 700px;
    width: 100%;
    height: auto;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    width: 150px;
    height: 150px;
    margin-top: 10px;
    margin-right: 30px;
}

.play-icon, .pause-icon {
    width: 100%;
    height: 100%;
    fill: white;
}

.pause-icon {
    display: none;
}

.visualizer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px;
    z-index: 1;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, #FC6301 0%, #FF2301 35%, #FF2301 70%);
    transition: height 0.1s ease;
    box-shadow: 0px 0px 100px 15px #32011a18;
}

.contacts-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    padding: 11px 24px;
    background-color: transparent;
    /*#32011a*/
    border-radius: 6px;
}

.contacts-info span {
    font-size: 15px;
    margin-bottom: 4px;
    text-align: right;
}

.contacts-info a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

/* Component 52 */
@media (max-width: 760px) {
    .contact-info {
        flex-direction: column;
        align-items: flex-end;
    }

    .play-button {
        background: none;
        border: none;
        cursor: pointer;
        width: 50px;
        height: 50px;
        margin-top: 1px;
        margin-right: 20px;
    }

    .logo {
        max-width: 200px;
        width: 100%;
        height: auto;
    }
        .contacts-info {
         position: absolute;
         bottom: 80px;
         right: 20px;
         display: flex;
         flex-direction: column;
         padding: 0px 0px;
         background-color: transparent;
         /*#32011a*/
         border-radius: 6px;
    }

    .contacts-info a {
         text-decoration: none;
         color: white;
         font-size: 20px;
         font-weight: 600;
    }
}

@media screen and (max-width: 590px) {
.contact-info {
        flex-direction: column;
        align-items: flex-end;
    }

    .play-button {
        background: none;
        border: none;
        cursor: pointer;
        width: 50px;
        height: 50px;
        margin-top: 1px;
        margin-right: 20px;
    }

    .logo {
        max-width: 200px;
        width: 100%;
        height: auto;
    }

    .contacts-info {
         position: absolute;
         bottom: 80px;
         right: 20px;
         display: flex;
         flex-direction: column;
         padding: 0px 0px;
         background-color: transparent;
         /*#32011a*/
         border-radius: 6px;
    }

    .contacts-info a {
         text-decoration: none;
         color: white;
         font-size: 20px;
         font-weight: 600;
    }
}