body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.center-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical center */
    align-items: center;
    /* horizontal center */
    height: 100vh;
    /* full screen height */
    text-align: center;
    align-items: center;
    gap: 20px;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    /* spacing between images */
    margin-bottom: 20px;
}

.text-row {
    display: flex;
    /* spacing between "listen" and "subscribe" */
    font-size: 18px;
}

ul{
    list-style-type: none;
}

.navbar{
    display: flex;
    flex-direction: row;
    gap: 10px;
    
}

.navbar a{
    text-decoration: none;
    color: black;
}

.navbar a:hover{
    color: blue;

}

footer{
    text-align: right;
    padding: 10px;
}

.center-container img:hover{
    transform: scale(1.05);
    transition: ease .2s;

}