* {
  margin: 0%;
}

@font-face {
  font-family: 'Aleo';
  src: url(Aleo-VariableFont_wght.ttf);
}

body {
    overflow-x: hidden;
    font-family: Aleo;
}

#master {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    background-image: url("../img/main.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.top {
    width: 100%;
    height: 100vh;
}

#headerMain {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.575), #ffffff00);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 0.2s ease;
    z-index: 100;
}

#headerMain.hide {
    top: -100px;
}

.headerLogo {
    margin-left: 8vw;
    width: 30%;
    height: 100%;
}

.headerMenu {
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.headerMenuBottom {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logoHeader {
    height: 100%;
}

.menuItem {
    margin-left: 50px;
    transition: color 0.15s;
}

.menuItemFlag {
    margin-left: 20px;
    transition: color 0.15s;
}

.menuItemFlag#menuButton9 {
    margin-left: 20px;
    margin-right: 50px;
    transition: color 0.15s;
}

.menuItemHome {
    margin-left: 100px;
    transition: color 0.15s;
}

.menuItemHomeBottom {
    transition: color 0.15s;
}

.menuItem:link , .menuItemHome:link , .menuItemHomeBottom:link{
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.menuItem:visited , .menuItemHome:visited , .menuItemHomeBottom:visited{
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.menuItem:hover , .menuItemHome:hover , .menuItemHomeBottom:hover{
    text-decoration: none;
    color: #E19622;
}

.mainLogo {
    margin-top: 5%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.middleGrad {
    width: 100%;
    height: 250px;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.637), rgba(0, 0, 0, 0.911));
}

.middleMain {
    width: 100%;
    height: 100%;
    background-color:  rgba(0, 0, 0, 0.911);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mainLogoAlbum {
    position: relative;
    bottom: 100px;
}

.middleText {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

#universumSpacing {
    letter-spacing: 20px;
}

.middleDisplay {
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    justify-content: center;
}

.middleLeft {
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.middleRight {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.coverArtDiv {
    margin-top: 60px;
    width: 1000px;
    height: 1000px;
    display: flex;
}

#mainPageCD {
    width: 100%;
    height: auto;
}

.textBox {
    margin-top: 100px;
    width: 500px;
    font-size: 18px;
}

.readmoreButton {
    background-color: rgba(255, 255, 255, 0.014);
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 11px;
    padding-bottom: 11px;
    transition: background-color 0.15s, color 0.15s, outline 0.15s;
    font-size: 16px;
    color: rgb(255, 255, 255);
    outline: 1px #ffffff solid;
}

.buttonClickable:link{
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.buttonClickable:visited{
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.readmoreButton:hover{
    background-color: #ffffff;
    color: #000000;
}

.spacer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    margin-top: 100px;
    width: 90%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

hr {
    width: 90%;
    border: 1px solid rgb(66, 66, 66);
}

#copyright {
    color: rgb(112, 112, 112);
}

.webBy {
    color: rgb(112, 112, 112);
    transition: 0.15s color;
}

.webBy:link {
    text-decoration: none;
}

.webBy:visited {
    text-decoration: none;
}

.webBy:hover {
    color: white;
}