@font-face {
    font-family: Supercell;
    src: url(fonts/Supercell-magic-webfont.ttf);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,300&display=swap');

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

.logo {
    max-width: 50%;
}

li, a {
    font-family: Supercell, sans-serif;
    font-size: 13px;
    color: white;
    text-decoration: none;
    padding-left: 15px;
    padding-right: 15px;
}
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    position: fixed;
    opacity: 1;
    z-index: 2;
}


.nav_link {
    list-style: none;
}

.nav_link li {
    display: inline-block;
}

.nav_link li a:hover {
    color: goldenrod;
}
/*Backgroundimage*/
.section1{
    padding-top: 300px;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)), url("GameplayImages/gameplay\ bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center, center;
}
/*BGimage Description*/
#introtext1{
   font-family: Supercell, sans-serif;
   font-size: 5pc;
   text-align:left;
   padding-left: 1ch;
   color: white;
}

#Gameplayquote{
   font-family: 'Montserrat', sans-serif;
   font-size: 25px;
   text-align: justify;
   letter-spacing: 0.1em;
   line-height: 1.6;
   color: white;
   padding-left: 50px;
   padding-bottom: 20pc;
}



/*Second section*/
/*Backgroundimage*/
.section2 {
    padding-top: 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)), url("GameplayImages/bottombg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center, center;
}

#introtext2{
    font-family: Supercell, sans-serif;
    font-size: 2pc;
    text-align: center;
    padding-left: 1ch;
    color: white;
    position: relative;
}

.homevillage{
    height: 250px;
    }


 #introtext3{
    font-family: Supercell, sans-serif;
    font-size: 2pc;
    text-align:center;
    padding-left: 1ch;
    color: white;
 
}

.builderbase{
    height: 250px;
}

/*FOOTER*/
footer {
    overflow-x:hidden;
}

.footerElement1{
    background-color: black;
    display: grid;
    padding-top: 5%;
    padding-bottom: 3%;
    grid-template-columns: 25% auto auto auto;
    grid-template-rows: auto auto;
    grid-template-areas: 
        "logoAndMotto explore connect cs"
        "logoAndMotto explore social nl"
}

.logoAndMotto {
    grid-area: logoAndMotto;
}

.exploreContainer {
    grid-area: explore;
}

.connectContainer {
    grid-area: connect;
}

.socialContainer {
    grid-area: social;
}

.csContainer {
    grid-area: cs;
}

.newsLetterContainer {
    grid-area: nl;
    display: grid;
    grid-template-columns:  auto 60%;
    grid-template-rows: auto 80%;
    grid-template-areas: 
        "nlTitle nlTitle"
        "nl1 nl2" 
}

#nlTitle {
    grid-area: nlTitle;
}

#subscribe {
    color: white;
    font-family: 'Montserrat', sans-serif;
}

#nl1 {
    grid-area: nl1;
    width: 100%;
}

#nl2 {
    width: 100%;
    grid-area: nl2;
}

.copyrightContainer {
    background-color: gray;
}

.copyrightContainer > p {
    color: white;
}

.footerTitle {
    font-family: Supercell, sans-serif;
    font-size: 15px;
    color: white;
}

.footerList > li {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: white;
    padding-top: 0;
    padding-left: 0;
    list-style: none;
    line-height: 1.5;
}

.footerList > li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: white;
    padding-top: 0;
    padding-left: 0;
    list-style: none;
    line-height: 1.5;
}

.footerList > li a:hover {
    color: goldenrod;
}

#motto {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: white;
    text-align: center;
    letter-spacing: 0.1em;
    font-style: italic;
    line-height: 1.6;
}

#footerLogo {
    width: 80%;
    height: auto;
    object-position: center;
}

#footerLogoContainer {
    text-align: center;
}

#socials {
    width: 30%;
    height: auto;
    margin-top: 1%;
}

.footerElement2 {
    background-color: darkgray;
}