body {
    background-color: #000000;
    color: #FF6EFF;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 40px;
    text-decoration: none;
    margin-bottom: 30px;
    color: #00FFFF;
    text-shadow: 3px 3px 3px #00b6b6;
}

h2 {
    font-size: 25px;
    text-decoration: none;
    margin-bottom: 20px;
    color: #00FF6E;
    /* text-shadow: 3px 3px 3px #00b64f; */
}

p {
    margin-bottom: 50px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    width: 400px;
}

li {
    margin-bottom: 10px;
    border: 1px solid #FF6EFF;
    padding: 10px;
    margin: 20px 0;
    box-shadow: 3px 3px 3px #FF6EFF;
    background-color: #6b176b4f;
}

li:hover {
    border: 1px solid #00FFFF;
    transition: border 0.3s;
}

a {
    color: #FF6EFF;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #00FFFF;
    text-decoration: underline;
}

main {
    max-width: 800px;
    margin: 50px 50px;
}

footer {
    margin-top: 50px;
    color: #00FFFF;
    text-shadow: 3px 3px 3px #00b6b6;
}

img{
    border: 1px solid #FF6EFF;
}


/* break for when you go to desktio */
@media screen and (min-width: 1000px) {
    body {
        flex-direction: row;
    }

    .advertisement {
        margin: 100px 45px;

        height: 800px;
        width: 500px;
    }
    img {
        width: 100%;
        height: 100%;
        box-shadow: 10px 10px 10px #FF6EFF;

    }
}