@font-face {
    font-family: 'Brother 1816 Regular';
    src: url("fonts/Brother-1816-Regular.ttf");
}
@font-face {
    font-family: 'Brother 1816 Printed Bold';
    src: url("fonts/Brother1816Printed-Bold.ttf");
}

body {
    padding: 0;
    margin: 0;
    background:linear-gradient(to top, #3B4371, 50%, #F3904F);
    font-family: "Brother 1816 Regular";
}
h2 {
    color: bisque;
    font-family: 'Brother 1816 Printed Bold';
}
#background {
    width: 100%;
    height: auto;
    background:linear-gradient(#3B4371, 50%, #F3904F);
}
    #logo {
        width: 100%;
        height: auto;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 25px 0;
    }
        #logo a img {
            width: auto;
            height: 100px;
        }
    @media screen and (max-width: 500px) {
        #star3 {
            display: none;
        }
        #star4 {
            display: none;
        }
    }
        .stardiv {
            position: absolute;
            display: block;
        }
        #star1 {
            left: 10%;
            top: 25%;
            width: 20px;
            height: auto;
        }
        #star2 {
            left: 20%;
            bottom: 25%;
            width: 20px;
            height: auto;
        }
        #star3 {
            left: 32%;
            top: 35%;
            width: 10px;
            height: auto;
        }
        #star4 {
            left: 65%;
            bottom: 35%;
            width: 10px;
            height: auto;
        }
        #star5 {
            left: 75%;
            top: 35%;
            width: 20px;
            height: auto;
        }
        #star6 {
            left: 90%;
            bottom: 35%;
            width: 15px;
            height: auto;
        }
            .stardiv img {
                width: 100%;
                height: 100%;
            }

    #playlist {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 35px 0;
    }
        #music {
            width: calc(75% + 30px);
            height: 75px;
            background-color: #373b55;
            border-radius: 10px;
            margin: 10px 0;
            color: bisque;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
        }
            #music-align {
                width: fit-content;
                height: fit-content;
                display: flex;
                align-items: flex-end;
            }
            @media screen  and (max-width: 800px) {
                #music {
                    font-size: 16px;
                }
                #music-align {
                    flex-direction: column;
                    align-items: center;
                }
                span {
                    margin: 0 !important;
                    font-size: 12px !important;
                }
            }
                span {
                    height: auto;
                    font-size: 16px;
                    margin: 0 0 0 25px;
                }
    
    #explanation {
        width: calc(100% - 20px);
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 35px 0;
        padding: 0 10px;
    }
        #explanation-align {
            max-width: calc(75% + 30px);
            width: 700px;
            height: auto;
            display: flex;
            align-items: center;
            margin: 15px 0;
        }
            #explanation img {
                width: auto;
                height: 150px;
            }
            #explanation p {
                width: fit-content;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                padding-left: 15px;
            }

    #speaker {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 35px 0;
    }
        #speaker-align {
            max-width: calc(75% + 30px);
            width: fit-content;
            height: auto;
            display: flex;
            align-items: center;
            margin: 15px 0;
        }
            #speaker-align img {
                width: auto;
                height: 120px;
            }
            #speaker-align-detail {
                width: fit-content;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                padding-left: 10px;
            }

    footer {
        width: 100%;
        height: auto;
        text-align: center;
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: small;
        color: bisque;
    }