@import 'font.css';
@import 'animate.css';
@import url('https://fonts.googleapis.com/css?family=Fjalla+One|Krona+One|Roboto+Slab|Viga&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    min-height: 100vh;
}

#banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/1496647/pexels-photo-1496647.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
    filter: saturate(100%);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.banner nav {
    font-family: 'Fjalla One';
    font-size: 18px;
    box-shadow: 0px 2px 10px yellow;
}

.banner nav ul {
    width: 50%;
    margin-left: auto;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 10vh;
}
.banner nav ul li:hover{
    animation: jump 1s ease-in-out infinite;
} 
.banner nav ul li a {
    color: white;
}

.banner-text {
    color: #cec2c2;
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%  , -50%);
    text-align: center;
}


.banner-text h1 {
    font-family: 'TarrgetPlatinumRegular-eznx';
    font-size: 80px;
    width: 650px;
    animation: fadeIn 1s ease-in-out;
}
#about{
    height: 100vh;
}
#about h1 {
    font-family: 'TarrgetPlatinumRegular-eznx';
    font-size: 50px;
    text-align: center;
    margin: 10px 0px;
}
.about{
    display: flex;
    align-items: center;
}
.about-text{
    width: 50%;
    transform: translateY(10%);
    padding: 20px;
}
.about-text h2{
    font-size:40px;
    font-family: 'Viga';
}
.about-text h4{
    font-family: 'Krona One';
    margin: 10px 0px;
}
.about-text p{
    font-size: 16px;
    font-family: 'Lato';
    margin:20px 0px
}
.about-icons img{
    width: 60px;
}
.about-img{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-img img{
    transform: translateY(10%);
    width: 300px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 8px 8px 20px grey;
}
#works{
    min-height: 100vh;
    margin-bottom: 40px;
}
#works h1{
    font-family: 'TarrgetPlatinumRegular-eznx';
    font-size: 50px;
    text-align: center;
    margin: 40px 0px;
}
.works{
    margin-left:40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 40px;
}
.works img{
    width: 330px;
}
#footer{
    height: 60vh;
    background-color: #101820ff;
    color: white;
    display: flex;
    justify-content: space-around;
    font-family: 'Viga';
}
#footer h2{
	margin: 20px 0px;
}
#footer ul{
	list-style: none;
}

.footer-social ul li{
	color: rgba(255, 255, 255, .5);
	font-size: 18px;
	padding: 6px 0px;
}
.footer-links ul li{
	padding: 6px 0px;
}
.footer-links ul li a , .footer-social ul li a{
	color: rgba(255, 255, 255, .5);
	font-size: 18px;
}

.footer-links ul li a:hover , .footer-social ul li:hover{
	color: rgba(255, 255, 255, 1);
}
.footer-contact{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer-contact input , .footer-contact textarea{
	color: white;
	border: none;
	border-bottom: 2px solid white;
	background: none;
	padding: 4px 10px;
	margin-bottom: 10px;
}
.footer-contact button{
	width: 60px;
	height: 30px;
	background: none;
	border: 2px solid white;
	color: white;
	font-size: 16px;
	border-radius: 4px;
}
.footer-contact button:hover{
	background: white;
	color: black;
}

/*=============================================*/
