@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap');

/* ОБЩИЕ СТИЛИ */
* {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    text-decoration: none;
    list-style: none;
    color: black;
}

a {
    color: #292929;
}
.a_color {
    color: #e77d7d;
    text-decoration: none;
}
a:hover {
    color: #684f8e;
    text-decoration: none;
}
.a_color:hover {
    color: #e77d7d;
    text-decoration: underline;
}

.main-row {
    display: flex;
    flex-flow: row wrap;
}

.important-text {
    font-weight: bold;
    color: #e77d7d;
}

.divider-line {
    margin-top: 40px;
    margin-bottom: 40px;
}

.spacer {
    height: 300px;
}

.tihon_a:hover {
    color: #e77d7d;
}

.cover-art {
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    
    .cover-art {
        width: 350px;
        height: 520px;
    }

}

.hidden-block {
    display: none;
}