@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
/* @import url('https://fonts.cdnfonts.com/css/sansation'); */
body {
    margin: 0;
    padding: 0;
    background-color: #272422;
    font-family: "Monteserrat",'Open Sans', sans-serif;
    color: #ffffff;
}
.project-link{
    position: fixed;
    right: left;
    padding: 20px;
}
.project-link a{
    color:#fff
}
.project-link a:hover{
    color:#aeaeae;
}
.bg-img{
    width: 100%;
    position: fixed;
    z-index: -1;
    bottom: 0;
}

.logo-plybtn{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-plybtn a{
    margin-top: 40px;
}
.btns-container{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.ply-btn{
    all: unset;
    background-color: #7FA650;
    color: #fff;
    font-size: 36;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    padding: 20 70;
    border-radius: 20px;
    transition: background-color 300ms;
    cursor: pointer;
    -webkit-box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
}
.ply-btn:hover {
    background-color: #64863a;
}
.ply-btn:active {
    background-color: #5a7935;
}
a {
    all: unset;
}
.learn-btn{
    all:unset;
    background-color: #BE9537;
    color: #fff;
    font-size: 36;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    padding: 20 60;
    border-radius: 20px;
    transition: background-color 300ms;
    cursor: pointer;
    -webkit-box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 31px -7px rgba(0,0,0,0.75);
}
.learn-btn:hover{
    background-color: #9e7e36;
}
.logo-sm img{
    position: fixed;
    width: 200px;
    padding: 20px;
    cursor: pointer;
}


/* THEME CSS */

.absolute {
    position: absolute;
    top: 90px;
    left: 20px;
}

.theme-container {
    display: flex;
}

.themetitle {
    font-size: 30px;
}

.dropbtn {
    background-color: #006c8a;
    transition: background-color 300ms;
    color: white;
    padding: 10px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: relative;
    top: 10px;
    background-color: #f1f1f1;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 5px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content{
    display: block;
    border: transparent 5px solid;
}
.dropdown-content:hover {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #008bb1;
}

.colorbox {
    display: flex;
}
.colorbox div{
    width: 20px;
    height: 20px;
}

.woodLight {
    background-color: #E2C5B0;

}

.woodDark {
    background-color: #AA8C77;

}
.steelLight {
    background-color: #C3CDDC;

}

.steelDark {
    background-color: #8F9EB8;
}
.greyLight {
    background-color: #DADADA;
}

.greyDark {
    background-color: #ADADAD;

}
.pinkLight {
    background-color: #E1C7E2;

}

.pinkDark {
    background-color: #C399BF;

}

.themename {
    padding: 10px;
}
@media only screen and (max-width: 600px) {
    .logo-plybtn img {
        width: 90%;
    }
    .ply-btn{
        font-size: 25px;
        padding: 20px 50px;
    }
    .learn-btn{
        padding: 20px 45px;
        font-size: 25px;
    }
    .btns-container{
        justify-content: space-evenly;
    }
}