*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #B8E3F3;
}
section{
    min-height: 100vh;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
.container{
    width: 50%;
    height: auto;
    background-color: rgba(250, 250, 250, 0.527);
    border: 4px solid #3954a5;
    border-radius: 12px;
}
h1{
    font-family: hwt-gothic-round,sans-serif;
    font-size: 64px;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    letter-spacing: 1px;
    margin: 20px 0;
    color: #3954a5;
}
article{
    padding: 36px;
}
p{
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
#text2{
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    color: #3954a5;
}
#credits{
    text-align: center;
}
#playButton{
    width: 30%;
    height: auto;
    transition: 0.3s;
    animation: playButton 0.7s linear 0.3s infinite alternate;
}
#playButton:hover{
    filter: opacity(70%);
}
@keyframes playButton{
    0%{
        transform: scale(0.8);
    }
    100%{
        transform: scale(1);
    }
}
#actions{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
a{
    text-align: center;
}