/* グローバルスタイル */
body {
    margin: 0;
    padding: 0;
    font-family: "Kaisei Decol", serif;
    /* font-size: 1.0rem; */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}
a {
    color: #ffffff; /* 今回は#000000を指定していますが、好きな色を指定できます */
}
/* コンテナの基本スタイル */
.container {
    background-image: url("../img/shootingstar.gif");
    margin: 0 auto;
    padding: 20px;
    background-repeat: repeat;
    background-color: rgb(0, 0, 0);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* モバイルスタイル（デフォルト） */
.container {
    width: 100%;
    box-sizing: border-box;
}

/* PCスタイル */
@media (min-width: 768px) {
    .container {
        width: 100%;
        max-width: 1200px;
        padding: 20px 40px;
        background-color: rgb(0, 0, 0);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
}

#img-head {
    width: 100%;
}

#img-profile {
    width: 70%;
}

#img-400error {
    width: 40%;
}

#text-title {
    justify-content: start;
    color: #c53595;
}

#text-description {
    justify-content: start;
}

#text-event-info {
    color:rgb(255, 255, 255)
}

#timetable {
    color:hotpink
}

#caution {
    color:rgb(255, 255, 0)
}

#span-info {
    margin-left:15px;
}

.error {
    color: red;
}

#organizer-info {
    color:greenyellow
}

#organizer-description {
    color:greenyellow
}

#link-soundcloud {
    color:aqua
}

#dj-info {
    color:aqua
}