@font-face {
  font-family: Irregular;
  src: url(Fonts/Irregular.otf);
}

*{
    margin: 0;
    padding: 0;
}

html{
    color: rgb(45, 44, 42);
    background-color: rgb(45, 44, 42);
    background-size: cover;
    background-repeat: no-repeat;
}

header{
    background-color: rgb(45, 44, 42);
    color: rgb(255, 255, 255);
    width: calc(100% - 100px);
    height: 100px;
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
    align-items: center;
}

footer{
    background-color: rgb(45, 44, 42);
    color: rgb(255, 255, 255);   
    text-align: center;
    width: 100%;
    height: 100px;
    align-content: center;
    bottom: 0;
}

main {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: calc(100vh - 200px);
}

.AboutImg { grid-area: 1 / 1 / 6 / 5; border: 5px solid rgb(45, 44, 42); justify-content: center; align-items: center; display: flex; background-color: rgb(255, 255, 255);}
.AboutText { grid-area: 1 / 5 / 3 / 8; border: 5px solid rgb(45, 44, 42); padding: 20px; background-color: rgb(255, 255, 255);}
.Media { grid-area: 3 / 5 / 6 / 8; border: 5px solid rgb(45, 44, 42); padding: 20px; background-color: rgb(255, 255, 255);}

.Media{
    color: rgb(143, 140, 133);
    display: flex;
    align-items: center;
    justify-content: center;
}

.Media:hover{
    background-color: rgba(147, 147, 147, 0.763);
    color: rgb(255, 255, 255);
}

.AboutImg img{
    height: 100%;
}

.ComingSoon{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1{
    font-family: Irregular;
    font-size: 4rem;
}

a{
    text-decoration: none;
    color: rgb(255, 255, 255);
}

h2{
    font-family: Irregular;
    padding: 10;
    font-size: 2rem;
}

p{
    font-family: Irregular;
    padding: 10px;
}

a{
    font-size: 1.5rem;
}

/* From Uiverse.io by MarcLazz */ 
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.button {
  cursor: pointer;
  text-decoration: none;
  color: #ffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(45, 44, 42);
  border: 2px solid rgb(45, 44, 42);
  transition: all 0.45s;
}

.button:hover {
  transform: rotate(360deg);
  transform-origin: center center;
  background-color: #ffff;
  color: rgb(45, 44, 42);
}

.button:hover .btn-svg {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg)
    brightness(103%) contrast(103%);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.AudioImg{
    display: flex;
    height: auto;
}

.AudioImg div{
    border: rgb(45, 44, 42) 5px solid;
}

.MediaAudio{
    width: 30%;
    background-color: rgb(255, 255, 255);
}

.audio{
    border: rgb(45, 44, 42) 5px solid;
    margin: 5px;
    text-align: center;
}

.MediaAudio audio{
    width: calc(100% - 30px);
    margin: 10px;
}

.MediaImg{
    width: calc(100% - 10px);
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(255, 255, 255);
}

.MediaImg img{
    border: rgb(45, 44, 42) 5px solid;
    max-width: 20vw;
    margin: 5px;
}

    header .button-container{
        display: flex;
    }
    footer .button-container{
        display: none;
    }

@media (max-width: 600px) {
    .AudioImg{
        flex-direction: column;
        height: unset;
        min-height: unset;
    }
    .MediaAudio{
        width: calc(100% - 10px);
    }
    header .button-container{
        display: none;
    }
    footer .button-container{
        display: flex;
    }
    h1{
        font-size: 3rem;
    }
    h2{
        font-size: 7vw;
        margin: 5px;
    }
    p{
        padding: 0%;
    }
    header{
        display: flex;
        text-align: center;
        justify-content: center;
    }
    main{
        display: block;
        height: auto;
    }
    .AboutImg img{
        width: 100%;
    }
    footer{
        position: unset;
    }
}