html,body
{
margin: 0;
padding: 0;
color: aliceblue;
}

main
{
    background-image: url(Resources/Images/work.jpg);
    background-size: cover;
    z-index: 999;
    height: 100%;
    width: 100%;
}

.Container{
    width: 100%;
    height: 50%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    margin-bottom: 10%;
    margin-top: 16%;
}

.MainPhoto
{
    height: 100vh;
    width: 100%;
}

@media screen and (max-width: 1000px)
{
    .MainPhoto
    {
        height: 50vh;
    }
}

@media screen and (max-width: 500px)
{
    .MainPhoto
    {
        height: 35vh;
    }
}

.Text
{
    width: 33%;
    font-size: 2rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.Info
{
    width: 33%;
    font-size: 2rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; 
}

footer
{
    background-color: gray;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 100%;
}