/* The background will be of a gradient color */
body{
    background: #e3a229;
    background: linear-gradient(90deg,rgba(227, 162, 41, 1) 38%, rgba(247, 223, 37, 1) 100%);
}

/* All of the images will have rounded corners */
img {
    width: 20%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 10px;
}

/* The h2 text will have a red shadow coming from them */
main h2{
    text-shadow: 2px 2px 5px red;
}

main p{
    font-size: large;
    width: 40%;
    margin-left: 0;
    margin-right: auto;
}

/* This section will have an outline around the text */
/* As well this section has a background image stored inside of the section */
section{
    padding: 100px 0;
    outline: 5px solid #000000;
    text-align: center;
    font-size: x-large;
    background-image: url(https://cdn.fastly.steamstatic.com/apps/csgo/images/csgo_react//cs2/header_ctt.png);
}

/* This has a different type of shadow affect, where it makes it look more neon */
section p{
    color: firebrick;
    text-shadow: 0 0 3px white;
}
