* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

@font-face {
    font-family: 'UniverseEbi';
    src: url('universe_ebi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'UniverseEbiWoff2';
    src: url('universe_ebi.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'UniverseCond';
    src: url('universe_cond.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

header {
    width: 100%;
    height: 140px;
    padding: 10px;
    background-color: red;
    font-family: 'UniverseEbi';
    color: white;
    outline: 3px solid black;
    font-weight: normal;
    font-style: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    
}

h2 {
    font-family: 'UniverseEbi';
    font-size: larger;
}
h3 {
    font-family: 'Courier New', Courier, monospace;
}
h4 {
    font-weight: normal;
    font-size: large;
}
.logo {
    height: 110%;
    max-width: 100%;
    
}
.poster {
    width: 100%;
    padding: 10px;

}
.album {
    width: 100%;
    padding: 15px;

}
.banner {
    width: 100%;
    padding: 2px;
}
.toy {
    width: 100%;
    padding: 15px;
    transition: all .2s ease-in-out; 
}
.toy:hover {
    transform: scale(1.05);
}
.master-page {
    padding-top: 140px;
}
.content-page {
    max-width: 800px;
    font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
    margin: 40px auto;
    padding: 0px 20px;
    
}
.music-icon {
    height: 60px;
    transition: all.2s ease-in-out;
}
.music-icon:hover {
    transform: scale(1.05);
}
.content_page p {
    text-align: center;
    margin-bottom: 1em;
    size: 30px;
}
.image-text-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}
.small-icon-array {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}
@media (min-width: 768px) {
    .image-text-container {
        flex-direction: row;
    }
    .poster {
        width: 75%;
    }

}