::selection {
    color: none;
    background: none;
}
p, .contact, .footer
{
    font-family: 'Merriweather', serif;
}
body
{
    background-color: black;
    color: white;
}
a
{
    text-decoration: none;
    color: white;
}
a:hover
{
    color: wheat;
}
.banner
{
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    flex-direction: column;
}
h1{
    text-transform: uppercase;
    font-family: 'Anton', sans-serif;
    font-size: 128px;
    margin-bottom: 0px;
    letter-spacing: 10px;
}
h2, h4{
    font-family: 'Roboto Condensed', sans-serif;
}
h2{
    font-size: 42px;
    margin-left: 10px;
}
h3
{
    text-transform: uppercase;
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    color: grey;
    margin-top: 0px;
    letter-spacing: 2px;
}
h4
{
    font-size: 36px;
}
h5
{
    font-size: 24px;
}
p
{
    line-height: 150%;
}
.menu
{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-bottom: 300px;
}
.menuItem
{
    text-transform: uppercase;
    padding: 20px;
    width: 15%;
    text-align: center;
    font-family: 'Edu TAS Beginner', cursive;
    font-size: 30px;
}
.menuItem:hover
{
    border: 1px solid white;
    border-radius: 20px;
    color: grey;
    cursor: pointer;
}
.main
{
    display: flex;
    justify-content: center;
    width: 80%;
    flex-direction: column;
    margin-left: 10%;
    margin-right: 10%;
}
.contact
{
    font-size: 28px;
    margin-left: 10px;
}
.footer
{
    margin-top: 50px;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 24px;
}
.content
{
    display: flex;
    width: 100%;
    flex-direction: row;
    padding: 20px;
    margin-bottom: 75px;
    font-size: 28px;
}
.borderOn
{
    border: solid 3px white;
    border-radius: 25px;
}
.content>img
{
    justify-content: left;
    display: inline-block;
}
.imgContent
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}
.rounded
{
    border-radius: 10%;
}
.content>p
{
    text-align: left;
    display: inline-block;
    margin-left: 20px;
}
.technologies a
{
    width: 10%;
}
.reveal{
    transform: translateY(-150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active{
    transform: translateY(0);
    opacity: 1;
}
.menuReveal{
    transform: translateX(-150px);
    opacity: 0;
    transition: 1s all ease;
}

.menuReveal.active{
    transform: translateX(0);
    opacity: 1;
}

#imgABm
{
    margin-top: 20px;
}