body{
    color:white;
    text-align: center;
    background-repeat:no-repeat;
    background-size:cover;
    background-attachment: fixed;
    background-color:rgba(0,0,0,0.3);
    background-blend-mode:darken;
}

h1{
    font-family: serif;
    font-size:60px;
}

header{
    margin-top: 20px;

}

header img{
    height: 150px;
}

.bgpic{

}

main{
}

main img{
    width:200px;
    height: 200px;   
    object-fit: cover;
}

nav{
    
}

ul{
    
}

li{
    list-style-type:none;
    text-align: left;
    padding:10px;
}

a{
    font-size:20px;
    font-family: serif;
    color: white;
    text-decoration: none;
}

a:hover{
    color: gray;
}

@media screen and (max-width:500px){

    body{
        background-color: black;
    }
    
    h1{
        font-size: 40px;
    }
    
    main img{
        width:100px;
        height:100px;
    }

    header{
        margin-top:0;
        flex-wrap:wrap;
    }
    

}