@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Foundation&display=swap');

*{
    scroll-behavior: smooth;
    scroll-margin-top: 150px;
    font-family: 'Edu NSW ACT Foundation', cursive;
}

body{
   background-color: rgb(51, 61, 82); 
   margin: 1px;
   font-family: 'Edu NSW ACT Foundation', cursive;
   display: block;
   text-align: center;
   overflow-x: hidden;
}

/* .container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 15%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    outline: 1px solid red; 
} */

/* ------------Navbar------------------ */

.navbar{
    width: 100%;
    top: 0px;
    display: flex;
    position: fixed;
    z-index: 100;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgb(35, 42, 58);
    border-radius: 0px 0px 10px 10px;
}

.navbar-left{
    color: white;
}

.navbar-right{
    width: 550px;
    display: flex;
    justify-content: space-evenly;
}

.navbar-right a{
    color: white;
    text-decoration: none;
    transition: 0.2s ease-in-out 0s;
    font-weight: 600;
    font-size: x-large;
}

.navbar-right a:hover{
    color: #3cb1ff;
}

/* -------------------------------------- */

.linkbtn {
    background-color: #07324e00;
    color: rgb(255, 255, 255);
    border: 0px;
    font-size: medium;
    font-weight: 600;
    transition: 0.3s ease-in-out 0s;
    display: none;
    width: 80px;
}

.linkdropdown:hover .linkbtn{
    color: #3cb1ff;
    font-size: larger;
}
  
.linkdropdown-content {
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    height: max-content;
    width: 80px;
    background-color: #3cb1ff;
    border-radius: 20px;
    padding: 10px;
}

.linkdropdown-content a{
    color: white;
    text-decoration: none;
    line-height: 30px;
    width: 100%;
    transition: 0.3s ease-in-out 0s;
    font-size: large;
}

.linkdropdown-content a:hover{
    font-size: x-large;
}
  
.linkdropdown:hover .linkdropdown-content {
    display: flex;
}

/* ------------Home------------------ */

.home-text-container{
    width: 920px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* outline: 1px solid red; */
    padding: 10px;
    margin: auto;
    margin-top: 200px;
}

@media only screen and (max-width: 910px) {
    body, .home-text-container{
        display:flex;
        justify-content: center;
        flex-wrap: wrap;
        font-size: medium;
    }

    .linkbtn{
        display: block;
        margin-right: 30px;
    }

    .navbar-right{
        display: none;
    }

    .navbar{
        justify-content: space-around;
    }
    
}

.home-text{
    width: 500px;
    height: 400px;
    font-size: larger;
    font-weight: 690;
    color: white;
    /* outline: 1px solid red; */
}

.home-text span{
    font-size: 50px;
    color: #4eb8ff;
    font-weight: bolder;
    text-shadow: 0px 0px 4px#4eb8ff;
}

.home-picture{
    width: 400px;
    height: 400px;
    margin: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 14px 6px #1d9cf0;
    background-color: #1d9cf0;
    background-image: url(assets/pepe_logo.png);
    background-position: center;
    background-size: 399px;
    /* outline: 1px solid red; */

}

.home-icons{
    margin-top: 50px;
    /* outline: 1px solid red; */
    width: 350px;
    display: flex;
    justify-content: space-evenly;
}

.icon{
    height: 40px;
    width: 40px;
    outline: 1px solid #1d9cf0;
    border-radius: 40px;
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s ease-in-out 0s;
    box-shadow: 0px 0px 14px 6px #1d9cf0;
    position: relative;
}

.icon:hover{
    background-color: #1d9cf0;
}

.icon span{
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    left: 0;
    z-index: 1;
}

#twitter{
    background-image: url(assets/twitter_icon.png);
}

#twitter:hover{
    background-image: url(assets/twitter_icon_black.png);
}

#insta{
    background-image: url(assets/insta_icon.png);
}

#insta:hover{
    background-image: url(assets/insta_icon_black.png);
}

#discord{
    background-image: url(assets/discord_icon.png);
}

#discord:hover{
    background-image: url(assets/discord_icon_black.png);
}

#github{
    background-image: url(assets/github_icon.png);
}

#github:hover{
    background-image: url(assets/github_icon_black.png);
}

/* ------------About------------------ */

.circle-container h1{
    text-align: center;
    color: #3cb1ff;
    font-weight: 900;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 200px;
}

.circle1{
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    border: 20px solid #07324e;
    border-left: 20px solid #1d9cf0;
    animation: ani 3s linear infinite;
}

.circle2{
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 10px solid black;
    border-top: 10px solid rgb(255, 255, 255);
    animation: ani 2s line infinite;
}

@keyframes ani{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

/* ------------Projects---------------- */

.project-container{
    text-align: center;
    color: #3cb1ff;
    font-size: xx-large;
    font-weight: 900;
    margin-top: 200px;
    margin: 10px;
}

.project-images{
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-width: 400px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0px 0px 14px 6px #1d9cf0;
    border-radius: 20px;
}

.project-image{
    width: 400px;
    height: 250px;
    border-radius: 20px;
    margin: 25px;
}

.project-image img{
    width: 400px;
    height: 250px;
    border-radius: 20px;
}

.project-image img:hover{
    background-color: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
}

/* ------------SetUp------------------ */

.setup-container{
    border-radius: 20px;
    box-shadow: 0px 0px 14px 6px #1d9cf0;
    width: max-content;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    margin-top: 200px;
}

.setup{
    width: max-content;
    color: white;
    font-weight: 600;
    font-size: large;
    line-height: 30px;
    margin: 0px 80px 0px 10px;
}

.setup h3{
    color: #3cb1ff;
    font-size: larger;
}

.setup ul{
    list-style: none;
    padding: 0px;
}

.setup-image img{
    width: 250px;
    border-radius: 20px;
}

/* ---------------- */

.footer{
    position: relative;
    bottom: 0px;
    width: 100%;
    height: 200px;
    margin-top: 15%;
    border-radius: 20px 20px 0px 0px;
    background-color: rgb(35, 42, 58);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --------Login False----- */

.login-false-container{
    background-color: rgb(51, 61, 82);
    display: flex;
    justify-content: center;
}

.login-false{
    margin-top: 50px;
    width: 200px;
    height: max-content;
    outline: 2px solid red;
    padding: 20px;
    text-align: center;
    color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 14px 6px #ff0000;
}

.login-false p{
    font-size: 100px;
    font-weight: 900;
    margin-top: 90px;
}

.login-false span{
    color: red;
    font-size: x-large;
    font-weight: 600;
}

.login-false a{
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: larger;
    outline: 2px solid white;
    padding: 2px;
    border-radius: 10px;
    transition: 0.3s ease-in-out 0s;
}

.login-false a:hover{
    color: black;
    background-color: white;
    font-size: xx-large;
}

/* ------------Mystery------------ */

.mystery-container{
    background-color: rgb(51, 61, 82);
    display: flex;
    justify-content: center;
}

.mystery{
    margin-top: 50px;
    width: 300px;
    height: 500px;
    outline: 2px solid #3cb1ff;
    box-shadow: 0px 0px 14px 6px #3cb1ff;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.mystery span{
    color: #4eb8ff;
    font-size: larger;
}

.mystery-dropdwon{
    width: min-content;
}

.mystery-dropbtn {
    background-color: #05044681;
    color: white;
    height: 100px;
    width: 100px;
    border: 0px;
    font-size: x-large;
    font-weight: 900;
    border-radius: 20px;
}
  
.mystery-dropdown-content {
    display: none;
    position: absolute;
    height: 115px;
    width: 110px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    color: #07324e;
    text-align: center;
    font-weight: 600;
    overflow: hidden;
}

.mystery-dropdown-content img{
    width: 110px;
    height: 115px;
}

.mystery-dropdown:hover .mystery-dropdown-content {
    display: block;
}