/************************************************************
Authored by: Richard Wren








**********************************************************/


h1 {
    margin-left: 20%;
    margin-right: 30%;
    display: flex;
    text-align: center;
    justify-content: left;
}

body {
    justify-content: center;
    background-color: black;
}

#wrapper {
    margin: auto;
    width: 80%;
	min-width: 700px;
	max-width: 1024px;
}

nav {
    position: sticky;
    top: 0;
}

nav ul {
    display: block;
    list-style: none;
    padding: 10px;
    background-color: #50c878;
    border-radius: 5px;
    font-size: large;
    font-weight: bold;
}

ul li {
    list-style: none;
}

ol li {
    list-style: none;
}

#resourcelinks {
    display: inline-block;
}

#resourcelinks ul li{
    list-style: none;
    text-align: center;
    
}

#resourcelinks ul li a img {
    width: 256px;
    padding-top: 25px;
}

#resourcelinks ul {
    background-color:  #50c878;
    border-radius: 75px;
}


nav ul li {
    color: black;
    display: inline;
    margin-left: 15%;
}

nav a:visited {
    color: black;
}

nav a:hover {
    color: #c7fad8;
}

h2, h3 {
    color: whitesmoke;
}

main {
    margin-left: 20%;
    margin-right: 30%;
}

.headshot {
    border-radius: 50%;
    margin: 10%;
}

header, main, footer {
    display: block;
    margin-left: 30%;
    margin-bottom: 5%;
    color: #50c878;
    text-align: center;
    
}

/*-------------
Rock, Paper Scissors
---------------*/

.centered {
    display: block;
    margin-left: 40%;
    margin-bottom: 5%;
}

.centered button {
    color: slategray;
}

.rpsHead {
    display: block;
    margin-left: 10%;   
}

#wins {
    color: green;
}

#lose {
    color: red;
}

#draw {
    color: blue;
}

/*--------------------------
Resume
--------------------------*/

#resumeHead {
    color: whitesmoke;
    line-height: 30%;
    margin: 10%;
}

#edu {
    background-color: #50c878;
    color: black;
    border-radius: 50px;
}

#exp h4 {
    font-weight: bold;
    color: whitesmoke;
}

#skills {
    background-color: #50c878;
    color: black;
    border-radius: 50px;
    padding: 10px;
}


/*-------------------------------------------------------------
                 Tablet Media Query
-------------------------------------------------------------*/

@media only screen and (max-width:1024px) {

}


/*-------------------------------------------------------------
                 Smartphone Media Query
-------------------------------------------------------------*/

@media only screen and (max-width:768px) {
    nav ul li {
       display: inline;
       align-items: center;
       margin: 0.5%;
       text-align: center;
    }

    nav ul {
        display: block;
        border-radius: 0%;
        margin-left: 0%;
        float: none;
        text-align: center;
        position: sticky;
        top: 0;
    }
    
    nav {
        position: sticky;
        top: 0;
    }

    header, main, footer {
        margin: auto;
        text-align: center;
    }



}