/* Set the styles for everything in CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* General text styles */
.headers {
    color: rgb(220, 220, 220);
    stroke:black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Styles for individual text elements */
h1 {
    font-size: 40px;
}

p {
    color: rgb(220, 220, 220);
    text-shadow: 1px 1px 1px black;
}

/* Title */
#title {
    outline: 2px white;
    outline-style: solid;
}

/* Do stuff for images */
img {
    padding: 100px;
    border: 10px;
    margin: 100px;
    display: block;
    background-color: rgb(200, 200, 200);
    border-radius: 20px;
    width: 200px;
    text-align: center;
    align-items: center;
    align-self: center;
    margin: auto;
    padding: 5px;
}

/* Set up the body with elements such as an image background */
html {
    background-image: url(../Images/JS-Example.png);
    background-repeat: no-repeat;
    background-size: auto auto;
    background-position: left top;
    background-color: black;
}

/* Give the body a background so the background image doesn't interfere */
body {
    background-color: #0a0a0a;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    border: 5px;
}