body {
    font-family: "Noto Sans JP", sans-serif;
}

header {
    width: 800px;
    max-width: 80%;
    /* 任意の幅にする*/
    margin: 0 auto;
}

main {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}

header .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* 中央に置く*/
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    /* 文字間隔を広げる*/
    margin: 20px;
    gap: 50px;
    /*テキストの中央寄せ」*/
}

.music-video {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.video-player {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-bottom: 15px;
}

.text {
    font-size: 20px;
    text-align: center;
    line-height: 2.5;
    padding-bottom: 30px;
}

.text a {
    padding: 3px 7px;
    border-bottom: solid 1px #000000
}

.text a:hover {
    background-color: aquamarine;
}

footer {
    display: block;
    background-color: rgb(60, 207, 207);
    margin-bottom: 15px;
    width: fit-content;
    margin: 0 auto;
}

footer p {
    text-align: center;
}