* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    background-color: lightskyblue;
    text-align: center;
}

.contain{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
}
.image{
    width: 200px;
    height: 200px;
}
.image img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.text{
    width: 100%;
    padding-top: 5%;
}
.text h1{
    font-size: 50px;
    color: rgb(46, 46, 46);
    text-shadow: 2px 2px 4px lightsalmon;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
}

@media only screen and (max-width: 400px){
    .text{
        padding-top: 25%;
    }
}
#play-btn{
    margin-top: 5%;
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    color: #fff;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    letter-spacing: 1px;
}
#play-btn:hover{
    color: yellow;
}
#audio-btn{
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    color: #fff;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    letter-spacing: 1px;
}
