@font-face {
    font-family: 'Sony Gothic';
    src: url('fonts/sonny\ gothic\ condensed\ bold.otf');
}
@font-face {
    font-family: Havre;
    src: url(fonts/Le\ Havre\ Rounded\ W00\ Regular.ttf);
}
@font-face {
    font-family: 'Jls';
    src: url('fonts/JlsdatagothicCnc-yyz3.otf');
}
@font-face {
    font-family: 'Game';
    src: url(fonts/GameRobot-PY6Z.ttf);
}
@font-face {
    font-family: 'Perfect';
    src: url('fonts/PerfectFutures-4BrZ4.ttf');
}
body{
    margin: 0;
    background-color: #16192a;
}
#nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: rgb(20, 20, 32);
}
#title{
    font-family: Sony Gothic;
    display: flex;
    align-items: center;
    margin: 0 0 0 5%;
    text-shadow: 0 0 5px black;
    color: #5b9a8b;
    letter-spacing: 0.25em;
}
#subtitle{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 50%;
    font-family: Jls;
    font-size: 130%;
    color: rgb(132, 151, 169);
    text-shadow: 0 0 5px black;
}
#icon{
    width: 40px;
    height: 40px;
    margin-right: 5px;
    cursor: default;
}
a{
    background-color: rgb(20, 20, 32);
    text-align: center;
    color: rgb(132, 151, 169);
    border-radius: 100px;
    font-size: 110%;
    font-family: Jls;
    transition: 0.5s;
    text-decoration: none;
    padding: 5px 20px 5px 20px;
    border: solid 1px;
    border-color: rgb(132, 151, 169);
}
a:hover{
    background:#47d472;;
    border-color: #47d472;
    color: rgb(132, 151, 169);
    box-shadow: 0 0 35px #47d472;
    letter-spacing: 0.25em;
}
a::before{
    width: 0px;
    content: '';
    position: absolute;
    inset: 2px;
    background: rgb(20, 20, 32);
}
a span{
    position: relative;
    z-index: 1px;
}
.hover{
    transition: 0.5s;
    cursor: pointer;
}
.hover:hover{
    letter-spacing: 3px;
    transition: 0.5s;
    border-bottom: 1px;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-style: solid;
    border-color: #47d472;
}
#hea{
    font-family: Perfect;
    color: #1e38cb;
    text-shadow: 0 0 5px black;
    font-size: 330%;
    letter-spacing: 5px;
    margin-bottom: 50%;
}
#wrap{
    align-items: center;
    flex-direction: column;
    display: flex;
}
#cont{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
i {
    color: #47d472;
    margin-left: 20%;
    margin-right: 20%;
    font-size: 5.5em;
    text-align: center;
    font-weight: 100;
    width: 100px;
    height: 100px;
    transition: 0.5s;
}
#git:hover{
    color: 	#35374d;
    transform: translateY(-50%);
}
#tel:hover{
    color: 	#64dbff;
    transform: translateY(-50%);
}
#discord:hover{
    color: 	#5865F2;
    transform: translateY(-50%);
}
#insta:hover{
    color: #E1306C;
    transform: translateY(-50%);
}
#end{
    height: 15rem;
    display: flex;
    align-items: end;
    justify-content: end;
}
#btn{
    background-color: #1e38cb;
    color: aliceblue;
    margin: 3%;
    padding: 5px 10px;
    border: none;
    border-radius: 20px;
    height: 40px;
    width: 100px;
    font-size: 150%;
    box-shadow: 0 0 5px black;
}
#btn:hover{
    background-color: #101d69;
}
.hidden{
    opacity: 0;
    transition: 1s;
    transform: translateY(40%);
}
.show{
    opacity: 1;
    transform: translateY(0%);
}
@media all and (max-width: 500px) {
    #nav{
        width: 100%;
    }
    #title{
        font-size: 70%;
        letter-spacing: 0.02em;
    }
    #subtitle{
        width: 50%;
        font-size: 45%;
    }
    #join{
        width: 30%;
    }
    a{
        width: 30%;
        padding: 2.5px 10px 2.5px 10px;
    }
    #icon{
        width: 30px;
        height: 30px;
        margin-right: 1px;
    }
    #end{
        height: 23rem;
    }
    #btn{
        margin: 8%;
    }
    i {
        margin-left: 2%;
        margin-right: 2%;
        font-size: 1.5em;
        font-weight: 100;
        width: 100px;
        height: 100px;
    }
}
@media all and (min-width: 1340px){
    #end{
        height: 25vw;
    }
    #btn{
        height: 2.5vw;
        width: 5vw;
        border-radius: 100px;
    }
}