@import url('https://fonts.googleapis.com/css?family=Patrick+Hand+SC');

*, body, html{
    padding: 0px;
    margin: 0px;
    font-family: 'Patrick Hand SC', cursive;
}

.logo a{
    float: left;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    color: white;
}

.navBar{
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li{
    float: right;
    list-style-type: none;
}

li a{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.grow{
    transition: all .2s ease-in-out;
}

.grow:hover{
    transform: scale(1.3);
}

.head{
    width: 100%;
    height: 600px;
    background-color: rgba(167, 152, 201, 0.52);
    text-align: center;
    
}

.head h1{
    padding-top: 50px;
    padding-bottom: 20px;
}

.head img{
    width: 300px;
    border-radius: 200px;
}
.head a{
    text-decoration: none;
    color: black;
}
.head h4{
    padding: 20px;
    width: 150px;
    margin: 10px auto;
    background-color: black;
    color: white;
    border-radius: 15px;
}


.portfolio{
    width: 100%;
    height: 400px;
    background-color: rgba(133, 91, 174, 0.52);
    text-align: center;
    color: white
}
.portfolio h2{
    padding: 20px;
    font-size: 50px;
}
.site{
    width: 30%;
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: white;
}
.site img{
    width: 100%;
    border-radius: 15px;
}
.site h4{
    padding: 10px;
}

.about{
    width: 100%;
    height: 500px;
    background-color: rgba(167, 152, 201, 0.52);
    text-align: center;
}

h2{
    padding: 20px;
    font-size: 50px;
}
.about p{
    width: 500px;
    margin: 10px auto;
    font-size: 20px; 
    line-height: 1.5;
}

.contact{
    width: 100%;
    height: 200px;
    background-color: rgba(133, 91, 174, 0.52);
    text-align: center;
    color: white
}

.contact h2{
    padding: 20px;
    font-size: 50px;
}

.contact p{
    width: 500px;
    margin: 10px auto;
    font-size: 20px;
    line-height: 1.5;
}

html{
    background-image: url(coolbackgronbfd.jpg);
    background-size: cover;
    background-attachment: fixed;
}

@media (max-width: 900px){
    .head img{
        width: 200px;
    }
    .head{
        height: 500px;
    }
    .site{
        display: block;
        margin: auto;
        width: 50%;
    }
    .portfolio{
        height: 900px;
    }
    .portfolio h2, .about h2, .contact h2{
        font-size: 25px;
    }
}


@media (max-width: 600px){
    .portfolio{
        height: 700px
    }
    .portfolio h2, .about h2, .contact h2{
        font-size: 20px;
    }
    .about p, .contact p{
        font-size: 15px;
        padding: 10px;
        width: 300px;
    }
    
    .about{
        height: 400px;
    }
    html{
        background: #f7c7fd;
    }
}















