*{
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: "polymath", sans-serif;
}

body{
    background-color: black;
}

main{
    background: linear-gradient(rgba(0,0,0,.25)), url(stockphoto1.jpg);
    background-size: cover;
    width: 100%;
    height: 100vh;
}

section{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100svh;
    justify-content: center;
    align-items: center;
  	line-height: 2;
}

a{
    text-decoration: none;
    width: 100%;
}

h1{
    width: 100%;
    text-align: center;
    font-size: 3em;
    color: white;
    text-shadow: 1px 1px 12px black;
    font-weight: 700;
    transition: 0.7s;
}

h2{
  	width: 100%;
  	text-align: center;
    font-size: 2em;
    color: white;
    text-shadow: 1px 1px 12px black;
    transition: 0.7s;
}

h1:hover, h2:hover{
    color: lightgreen;
    transform: scale(1.05);
    transition: 0.7s;
}

p{
    color: white;
    font-size: 24px;
}

.contact{
    color: white;
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 1.5em;
    padding: 20px;
    position: fixed;
    bottom: 0;
    transition: 0.7s;
}

.contact:hover{
    color: lightgreen;
    transition: 0.7s;
}

@media (max-width: 799px){
    h1{
        font-size: 1.2em;
        text-shadow: 1px 1px 5px black;
    }
  
  
  	h2{
        text-shadow: 1px 1px 5px black;
    }

    p{
        font-size: 1.2em;
        text-shadow: 1px 1px 5px black;
    }

    .contact{
        font-size: 1em;
    }
}