@font-face {
    font-family:"Monospace";
    src: url("font/MartianMono-VariableFont_wdth\,wght.ttf");
}

body{
    background-image: radial-gradient(circle at 45.41% 46.15%, #9c7d7e 0, #877274 16.67%, #706566 33.33%, #565656 50%, #3e4844 66.67%, #2a3b34 83.33%, #1a3025 100%);
    color: rgb(0, 0, 0);
    margin:0;
}


header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    background-color: gray;
    padding: 5px;
    font-family:"monospace";
    letter-spacing: 4px;
    font-weight: 100;

}

.logo{
    display: flex;
    align-items: center;
    
}
.logo img{
    height: 100px;
    margin-right: 10px;
    margin-left: 20px;
}

nav a{
    text-decoration: none;
    color: aliceblue;
    padding-right: 20px;
    font-weight: 100px;
}

nav a:hover{
    text-decoration: underline;
    color: #30325E;
}

a{
    text-decoration: none;
    color: aqua;
}

@media (max-width:600px) {

    body{
        background-image: radial-gradient(circle at 50% 50%, #ffffff 0, #ffffff 10%, #ffffff 20%, #ffffff 30%, #ffffff 40%, #ffffff 50%, #e3eeeb 60%, #cce0d7 70%, #b9d3c5 80%, #aac7b4 90%, #a0bda5 100%);

    }



    header{
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    nav{
       padding: 10px 0;
    }

    nav a:last-child{
        padding-right: 0;

}

    .logo img{
        height: 50px;
        margin-right: 10px;
        margin-left: 20px;


    }
}