html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

main {
    width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row: 100px 1fr 1fr 1fr;
    padding-top: 90px;
    padding: 20px;
    margin: auto;
    background-color: whitesmoke;
}

h1 {
    grid-column: 1/4;
    grid-row: 1/2;
    text-align: center;
    transition: 3s;
    transform: rotate();
    animation: spinAnimation 5s linear infinite;
}

#ronaldo {
    grid-column: 1/2;
    grid-row: 2/3;
    height: auto;
    width: 25em;
    animation: kickBallAnimation 3s ease-in-out infinite;

}

#ball {
    grid-column: 2/3;
    grid-row: 2/3;
    height: auto;
    width: 10em;
    align-self: end;
    animation: BallAnimation 4s ease-in-out forwards;
}

#goal {
    grid-column: 3/4;
    grid-row: 2/3;
    height: auto;
    width: 25em;
    align-self: end end;
}

#part1 {
    grid-column: 1/2;
    grid-row: 3/4;
    padding: 20px;
}

#part2 {
    grid-column: 1/2;
    grid-row: 4/5;
    padding: 20px;
}

#v1 {
  grid-column: 2/3;
  grid-row: 3/5;
  padding: 20px;
}

#v2 {
  grid-column: 3/4;
  grid-row: 3/5;
  padding: 20px;
}


@keyframes kickBallAnimation {
    0% {
      transform: translateX(0) rotate(100deg);
    }
    50% {
      transform: translateX(75px) rotate(100deg);
    }
    100% {
      transform: translateX(250px) rotate(0deg);
    }
  }

  @keyframes BallAnimation {
    0% {
      transform: translateX(0) translateY(0);
    }
    50% {
      transform: translateX(0) translateY(0);
    }
    100% {
      transform: translateX(500px) translateY(-100px);
    }
  }

  @keyframes spinAnimation {
    0% {
      transform: rotate(0deg);
      font-size: 60px;
      color: aqua;
    }
    25% {
        color: red;
    }
    50% {
        font-size: 100px;
        color: blueviolet;
    }
    75% {
        color: green;
    }
    100% {
      transform: rotate(360deg);
      font-size: 60px;
      color: aqua;
    }
  }
  
  
