@font-face {
    font-family: nulshock;
    src: url("./assets/fonts/nulshock.otf");
}

@font-face {
    font-family: futura;
    src: url("./assets/fonts/futura.ttf");
}

* {
    padding: 0;
    margin: 0;
    font-size: 0;
    font-family: sans-serif;
}

html {
    background-color: #17161e;
    width: fit-content;
}

body {
    width: fit-content;
}

#guide {
    width: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 80px;
    gap: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.subgenre {
    display: grid;
    width: 2300px;
    grid-template-columns: 1460px 1fr;
    grid-template-rows: fit-content(80px) 1fr;
    gap: 20px;
}

.info {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title {
    color: #ffffff;
    font-size: 104px;
    height: 80px;
    font-family: nulshock;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: start;
}

.description {
    display: flex;
    align-items: start;
    justify-content: start;
    font-family: futura;
    color: #ffffff;
    font-size: 24px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.albums {
    grid-area: 2 / 1 / 3 / 2;
    display: grid;
    gap: 10px;
    min-height: 200px;
    width: 1460px;
    grid-template-columns: repeat(7, 1fr);
}

.album {
    width: 200px;
    height: 200px;
    box-sizing: border-box;
    border: 3px solid #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.subtitle {
    color: #ffffff;
    font-size: 64px;
    height: 64px;
    font-family: nulshock;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-left: 64px;
}

.subtitle::before {
    content: '>>>';
    color: #ffffff;
    font-size: 64px;
    font-family: nulshock;
    text-transform: uppercase;
    margin-right: 16px;
}

.titles {
    grid-area: 1 / 2 / 3 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.titlesTitle {
    color: #ffffff;
    font-family: futura;
    font-size: 32px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}