nav{
    padding-top: 5px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #aaa;
}
.logo{
    margin: 0 35px 0 0;
    padding: 0;
    height: 30px;
    border: none;
}
.logoImg{
    height: 50px;
    clip-path: circle(25px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.logoImg:hover{
    filter: brightness(0.9);
}
.navs{
    display: block;
    text-decoration: none;
    color: white;
    margin-right: 35px;
    padding: 10px;
    background-color: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navs:hover{
    filter: brightness(0.9);
}
ul{
    display: flex;
}
li{
    list-style: none;
}
html{
    scroll-behavior: smooth;
}
#navigations{
    display: flex;
    text-align: center;
    height: 90px;
}
a.navs:visited{
    color: white;
}
a.navs{
    text-decoration: none;
}
nav a{
    text-decoration: none;
}
a{
    color: blue;
}
a:visited:not(.button,.navs,.whiteURL){
    color: blue;
}
#top{
    color: #afa;
    background-color: green;
    position: fixed;
    bottom: 40px;
    right: 20px;
    height: 30px;
    width: 100px;
    padding: auto;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.detail{
    font-size: 13px;
}
h1,h2,h3,h4,h5,h6{
    font-weight: normal;
    margin: 0;
    padding: 0;
}
.dot::before {
    transition: all 0.3s ease-in;
    animation: expansion 0.3s;
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    background-color: #fcb6aa;
    border-radius: 100%;
    position: absolute;
    z-index: 10;
    vertical-align: middle;
    margin: 0 0 auto auto;
}
.whiteURL{
    color: white;
}
@keyframes expansion {
    from{
        transform: scale(0);
    }
    to{
       transform: scale(1); 
    }
}
