*{
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight:lighter;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(31, 30, 30);
}
nav img{
    width:80%;
}
/*<!--FROM my favorite burger menu-->*/
.links {
    width: 30%;
    padding: 4px;
    position: fixed;
    top: 0px;
    right: -200px;
    transition: right .5s;
}
.links a{
    color: lightcoral;
    background: transparent;
    text-decoration: none;
    font-size: 14px;
    transition: 0.5s;
    letter-spacing: 2px;
}
.links a:hover{
    /*background-color: rgba(22,23,52);*/
    border-radius: 2px;
    transition: 0.5s;
    border: 1px solid whitesmoke;
    background: darkslategray;
    transition: 0.5s;
}
.line {
    width: 20px;
    border: 2px solid lightcoral;
    margin: 3px;
}
.burgermenu {
    position: fixed;
    top: 5px;
    right: 5px;
}
label[for="burger"]{
    z-index: 1;
    position: absolute;
    padding: 2px;
    right: 5px;
}
#burger {
    visibility: hidden;
}
#burger:checked+div.links{
    right: 0;
}
@media (min-width: 600px) {
    nav img{
        width:100%;
    }
    label[for="burger"], #burger {
        display: none;
    }
    .burgermenu, .links {
        position: unset;
        right: unset;
        top: unset;
        width: 100%;
    }
    .links {
        width: 90%;
        margin: auto;
        display: flex;
        justify-content: space-between;
    } 
    .links a{
        color: lightcoral;
        background: transparent;
        text-decoration: none;
        font-size: 16px;
        transition: 0.5s;
        letter-spacing: 2px;
    }
    .sub-footer img{
        width: 100%;
    }
}
/*END OF FROM my favorite burger menu*/
.sugarcookie{
    background-color: rgb(31, 30, 30);
    color: darksalmon;
}
.sub-footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color:rgb(31, 30, 30);
}
.sub-footer .author{
    margin-bottom: 25px;
    margin-top: 20px;
    font-size: 10px;
    color:seagreen;
}
.sub-footer img{
    width: 20%;
}
.sub-footer .icons /*fa*/{
    /*color: #f44336*/
    font-size: 10px;
    margin: 0 13px;
    /*cursor: pointer;*/
    padding: 18px 0;
}


