@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Serif+Display:wght@100;200;300;400;500;600;700;800;900&display=swap');


body{

   background-color: #000000; 
   color: white;
   margin: 0px;
   text-align: left;
   font-family: 'Poppins', sans-serif;
}


h2 {
font-size: 60px;
}

a{
    text-decoration: none;
    color: rgb(78, 169, 255);
    transition-duration: 0.3s;
}

a:hover {
    color: rgb(100, 255, 126);
    cursor:pointer;
}

p{
    font-size: 25px;
    
}

p span {
    font-style: italic;
    font-weight: 900;
}



.menu {
    display: grid;
    top: 0px;
    grid-template-columns: 10% 1fr 1fr 1fr;
    text-align: center;
    font-family: 'Cinzel', serif; 
    
}
#home {
    grid-row: 1 / span 4;
    }

.menu span {
    font-weight: 900;
}

.main {
    float: left;
    width: 96%;
    padding: 30px 2%;
    padding-bottom: 30px;
}

.footer {
    
    position: relative;
    left: 0px;
    bottom: 5px;
    width: 100%;
    text-align: center;
    
}
.footer a{
    margin-left: 10px;
    margin-right: 10px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition-duration: 0.3s;
}
.footer a:hover{
    color: gray;
}

.home{
    font-weight: 500;
    border: none;
   
    color: rgb(255, 255, 255);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    font-size: 35px;
    transition-duration: 0.3s;
    display: block;
}
.home:hover {
    
    transform: translate(10px, 10px);
}
.fa {
    
    font-weight: 500;
    border: none;
    
    color: black;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
    font-size: 35px;
    transition-duration: 0.3s;
    display: block;

}



.fa:hover {
    background-color: #72707073;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    transform: translate(0px, 10px);
    color: white;
}


.fa-meat {
    background: #6ecc6f;
    color: white;

}



.fa-fish {
    background: #7cd97d;
    color: white;

}

.fa-water {
    background: #88e389;
    color: white;
}
.imgSize {
    width: 40%;
    margin-left: 2%;
}




.youtubeLink {
    width: 40vw;
    height: 25vw;
}



/* smaller for Tablet*/
@media only screen and (max-width: 1426px) {



    .youtubeLink {
        width: 50vw;
        height: 35vw;
    }

}


/* For mobile phones: */
@media only screen and (max-width: 910px) {

    .audio {
        display: block;
        margin: auto;
        text-align: center;
    }

    .fa {

        font-size: 20px;

    }
    .menu {
        grid-template-columns: 25% 1fr;
        font-size: 20px;
    }
    h2 {
        font-size: 30px;
        
        }

    p{
         font-size: 15px;
     }

     .imgSize {
        width: 95%;
        margin-left: 0;
    }

    .youtubeLink {
        width: 95vw;
        height: 60vw;
    }



}