<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<div class="page-container-home">
    <div class="navbar">
        <div class="navbar-logo">
            <a class="navbar-logo-link" aria-current="page" href="/">Indi Mops</a>
            <div class="navbar-links">
                <a class="navbar-link" aria-current="page" href="/">Home</a>
                <a class="navbar-link" aria-current="page" href="about.html.">About</a>
                <a class="navbar-link" aria-current="page" href="projects.html">Projects</a>
                <a class="navbar-link" aria-current="page" href="gallery.html">Gallery</a>
                <div class="dropdown" style="float:right;">
                    <button class="dropbtn navbar-link">Menu</button>
                    <div class="dropdown-content">
                      <a class="btn" href="#">Lang</a>
                      <div class="sub-dropdown">
                        <a href="#">Russian</a>
                        <a href="#">English</a>
                        <a href="#">Spanish</a>
                      </div>
                      <a href="#">Other</a>
                    </div>
                  </div>
            </div>
        </div>
    </div>
    <main>
        <figure class="avatar">
            <div  class="avatar-circle"></div>
            <p id="transparency">_</p>
        </figure>
        <hr>
        <div>
          <p>Hello World!</p>
        </div>
        <hr>
        <div class="social-links">
            <a href="#">
                <img width="5%" height="auto" class="social-link" src="assets/social/github.png">
            </a>
            <a href="#">
                <img width="5%" height="auto" class="social-link" src="assets/social/twitter.png">
            </a>
            <a href="#">
                <img width="5%" height="auto" class="social-link" src="assets/social/youtube.png">
            </a>
            <a href="#">
                <img width="5%" height="auto" class="social-link" src="assets/social/discord.png">
            </a>
            <a href="#">
                <img width="5%" height="auto" class="social-link" src="assets/social/instagram.png">
            </a>
            <a href="#">
                <img width="5%" height="auto" class="social-link" src="assets/social/steam.png">
            </a>
        </div>
    </main>
</div>
<footer>
    <br>
    ©2021-2022 Всі права захищено <a href="#">Mops Storage</a>
</footer>
</body>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

@font-face {
    font-family: 'SansDetect';
    src: url("assets/Text Sans Defect.otf") format("otf");
}

@font-face {
    font-family: 'JapariSans';
    src: url("assets/fons/JapariSans.otf") format("otf");
}


@font-face {
    font-family: 'inter';
    src: url("assets/fons/inter.woff2") format("wof2");
}

* {
    margin: 0;
    padding: 0;
    outline: none;
}

html {
    background-color: rgb(12, 12, 12);
    color: rgb(230, 230, 230);
    font-size: 20px;
    line-height: 25px;
    height: 100%;
}

body {
    color: rgb(230, 230, 230);
    font-family:  "SansDetect", sans-serif;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    height: 100%;
}

p {
    font-size: 20px;
    padding: 1%; 
}

footer {
    position: relative;
    font-size: small;
    text-align: center;
}

hr {
    background-color:rgba(0,0,0,.15);
    border:0;
    height:1px;
    margin:1.5rem auto;
    width:75%;
}

a {
    text-decoration: none;
    color: rgb(232, 231, 231);
}

.block-link {
    display: block;
}

.projects-list-description a:hover {
    color: #1d9bf0;
}

#transparency {
    opacity: 0;
    cursor: default;
}

main, footer, figure {
    display: block;
}


figure {
    margin:1em 40px
}

.avatar-circle {
    outline:4px solid #f5f5f5;
    outline-offset: 10px;
    border-radius: 50%;
    width: 85px;
    padding: 32px;
    height: 85px;
    background: url('http://mops-storage.xyz/assets/avatar.jpg') no-repeat;
    background-position: center;
    background-size: 150px auto;
    margin: 0 auto;
}

.page-container-home {
    color: rgb(230, 230, 230);
    font-size: 20px;
    line-height: 25px;
    margin-left: 25%;
    margin-right: 25%;
    min-height: 81%;
    margin-top: 0px;
    max-width: 50%;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    flex: 1 0 auto;
}

.page-container {
    color: rgb(230, 230, 230);
    font-size: 20px;
    line-height: 25px;
    margin-left: 25%;
    margin-right: 25%;
    min-height: 90%;
    margin-top: 0px;
    max-width: 50%;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    flex: 1 0 auto;
    
}

.navbar {
    align-items: center;
    color: rgb(230, 230, 230);
    font-size: 20px;
    display:flex;
    line-height: 25px;
    padding-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 20px;
}

.navbar-logo {
    color: rgb(230, 230, 230);
    font-size: 40px;
    line-height: 50px;
    margin-right: 30px
}

.navbar-links {
    color: rgb(230, 230, 230);
    flex-grow: 1;
    font-size: 20px;
    line-height: 25px;
    display: inline;
}

.navbar-link {
    border-radius:6px;
    font-size:1.25rem;
    padding:.5rem 1rem;
    color: rgb(230, 230, 230);
}

.navbar-link:hover {
    background-color:#3b3b3b;
    text-decoration:none;
}

.dropbtn {
    border: none;
    cursor: pointer;
    background-color: initial; 
}

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

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #3b3b3b;
    min-width: 120px;
    z-index: 1;
    border-radius:6px;
    text-align: right;
}

.subdropbtn {
    color: rgb(230, 230, 230);
    padding: .5rem 1rem;
    text-decoration: none;
    display: block;
    border: none;
    cursor: pointer;
}

.dropdown-content a {
    color: rgb(230, 230, 230);
    padding: .5rem 1rem;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #5b5a5a;
    border-radius:10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content .btn:hover ~ .sub-dropdown {
  display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3b3b3b;
}

.sub-dropdown {
  position: absolute;
  display: none;
  min-width: 100px;
  right: 120px;
  top: 0;
  background-color: #3b3b3b;
  border-radius: 6px;
  text-align: right;
}

.sub-dropdown:hover {
  display: block;
}

.sub-dropdown a {
    color: rgb(230, 230, 230);
    padding: .5rem 1rem;
    text-decoration: none;
}

.sub-dropdown a:hover {
    background-color: #5b5a5a;
    border-radius:10px;
}

.avatar {
    margin: 1rem auto;
    text-align: center;
}

.c1 {
    color: rgb(240, 255, 0);
}

.c2 {
    color: rgb(242, 37, 74);
}
.c3 {
     color: rgb(71, 189, 17);
 }

.c4 {
    color: rgb(247, 224, 24);
}

.c5 {
    color: rgb(158, 112, 216);
}

.social-links {
    font-size:2.75rem;
    text-align:center;
}
.social-link {
    border-radius:6px;
    color:initial;
    font-size:1.25rem;
    padding:.5rem .75rem;
    background-color: transparent;
    filter: invert(100%);
}
.social-link:hover {
    background-color:#fafafa;
    filter: invert(0);
    text-decoration:none
}


#alert {
    display: flex;
    position: sticky;
    top: 0;
    padding: 0.3;
    background-color: #fed700;
    border-bottom: 3px solid #fff;
    border-radius: 5px;
    font-family: "inter";
    justify-content: space-between;
    overflow-wrap: break-word;
}

#text_alert {
    font-size: 20px;
    padding-left: 36.6525px;
    padding-top: 0.2;
    max-width: 90%;
    color: #4d3e48;
    float: left;
    
}

#hide_btn {
    float: left;
}

#hider {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 5px;
}

.clear {
    clear: both;
}


/*hovers*/

#hider:hover {
    border: 1px solid #fff;
}
#GitHub:hover {
    color: #a103fc;
    font-size: 27px;
}

#Twitter:hover {
    color: #1d9bf0;
    font-size: 27px;
}

#Discord:hover {
    color: #5865f2;
    font-size: 27px;
}

#YoouTube:hover {
    color: #ff0000;
    font-size: 27px;
}

#download_CC:hover {
    color: #ef3131;
}


hr {
    /*background-color: rgba(0,0,0,.15);*/
    background-color: hsla(0,0%,79%,.15) !important;
    border: 0;
    height: 1px;
    margin: 1.5rem auto;
    width: 75%;
    box-sizing: content-box;
    overflow: visible;
}

.secret-text {
    text-align: center;
    opacity: 0;
    cursor: default;
    max-width: 28%;
    margin-left: auto;
    margin-right: auto;
    color: rgb(118, 118, 118);
}

.secret-text:hover {
    opacity: 1000%;
}

.projects-page-head {
    font-size: 2rem;
    font-weight: 500;
    margin: 1rem 0;
}

.projects-page-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: rgb(212, 212, 212);
}

.projects-list {
    margin: 1rem 0;
    cursor: pointer;
}


.back {
    -webkit-transition: all .13s;
    -o-transition: all .13s;
    transition: all .13s;
}

.back:hover{
    background-color: #3b3b3b;
    padding: 1%;
    transform: scale(1.05);
    border-radius: 16px;
}
.projects-list-name {
    font-size: 1.15rem;
}

.projects-list-description, .projects-list-info {
    margin-top: .25rem;
    color: rgb(212, 212, 212);
}

.projects-list-info {
    display: flex;
    flex-wrap: wrap;
    font-weight: 300;
    letter-spacing: .025rem;
}

.label {
    align-items: center;
    display: flex;
    margin-right: .75rem;
}

.label-text {
    margin-left: .45rem;
    font-size: .95rem;
    margin-top: .07rem;
}

.label-img {
    width: 20px;
    height: 20px;
    filter: invert(100%);
}

.release {
    height: 22px !important;
    width: 22px !important;
}

.projects-list-name a:hover {
    color:#1d9bf0;
}

.flag {
    border-radius: 5px;
    width: 2.75em;
}

@media screen and (max-width: 600px) {
    h1 {
        color: #fff;
        font-size: 32px;
    }
    
    p {
        color: #fff;
        font-size: 18px;
        padding: 3px;
    }
    div {
        padding: 10px;
    }
  
    #text_alert {
        font-size: 14px;
    }
    
    /*hovers*/
    #GitHub:hover {
        font-size: 19px;
    }
    
    #Twitter:hover {
        font-size: 19px;
    }
    
    #Discord:hover {
        font-size: 19px;
    }
    
    #YoouTube:hover {
        font-size: 19px;
    }

    #social {
        margin-left: 25%;
        margin-right: 25%;
        border-width: 50%;
        border: 3px solid #fff;
        border-radius: 10px;
        text-align: center;
    }
    
    
    #active {
        margin-left: 25%;
        margin-right: 25%;
        display: block;
        max-width: 50%;
        text-align: center;
    }
    
    
}
$(document).ready(function(){
  $("#hider").click(function(){
    $("#alert").slideToggle("slow");
    $(this).toggleClass("active");
    $(".page-container-home").css("min-height", "90%");
  });
  

//   $(".btn").hover(function(){
//     $('.sub-dropdown').css("display", "block");
//     $('.sub-dropdown').css("right", "120px");
//     $('.sub-dropdown').css("top", "0");
//     $('.sub-dropdown').css("background-color", "#3b3b3b");
//     $('.sub-dropdown').css("border-radius", "6px");
//     $('.sub-dropdown').css("text-align", "right");
//     console.log("test");
//   },function(){
//       if ($('.sub-dropdown').mouseout){
//         $('.sub-dropdown').css("display", "block");
//       }
//       if ($('.sub-dropdown').mouseout){
//         $('.sub-dropdown').css("display", "none");
//       }
      
//   })
// });

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.