/*===== Global Style =====*/

* {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  font-family: 'Lato', sans-serif;
}

a {
  text-decoration: none;
}

/*===== Color Style =====*/

.blue {
  color: #4285f4;
}

.red {
  color: #ea4335;
}

.yellow {
  color: #fbbc05;
}

.green {
  color: #34a853;
}

.gray {
  color: #333333;
}

.white {
  color: #ffffff;
}

/*===== Header Style =====*/

.header {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 3;
}

.header-content {
  max-width: 1000px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-icon {
  width: 50px;
  height: 50px;
  margin-right: -5px;
  background-image: url(../images/google.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: center;
  animation: logo-icon 5s linear infinite;
}

@keyframes logo-icon {
  from {}
  to {transform: rotateZ(360deg);}
}

.header-logo-title {
  margin-left: 5px;
}

.header-logo-letter {
  margin-left: -2px;
  font-size: 28px;
}

.header-logo-text {
  font-size: 28px;
  font-family: 'Dancing Script', cursive;
  margin: 30px 0 0 -20px;
}

.header-menu {
  margin-right: 30px;
  font-size: 20px;
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.header-menu-link {
  color: #333333;
  padding: 10px 15px 10px 15px;
  border-radius: 1px;
}

.header-link-blue {
  border-bottom: 2px solid #4285f4;
}

.header-link-blue:hover {
  color: #ffffff;
  background: #4285f4;
}

.header-link-red {
  border-bottom: 2px solid #ea4335;
}

.header-link-red:hover {
  color: #ffffff;
  background: #ea4335;
}

.header-link-yellow {
  border-bottom: 2px solid #fbbc05;
}

.header-link-yellow:hover {
  color: #ffffff;
  background: #fbbc05;
}

.header-link-green {
  border-bottom: 2px solid #34a853;
}

.header-link-green:hover {
  color: #ffffff;
  background: #34a853;
}

.header-social {
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-social-link {
  width: 40px;
  height: 40px;
  background-color: #999999;
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-social-link:hover {
  background-color: #333333;
}

.header-fa {
  color: #ffffff;
}

/*===== Main Style =====*/


.main {
  width: 100%;
  z-index: 2;
}

.main-content1 {
  width: 100%;
  height: 700px;
  background-attachment: fixed;
  background-image: url(../images/google-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-content1-title {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 35px;
}

.main-content1-link {
  color: #ffffff;
  font-size: 24px;
  background-color: #4285f4;
  padding: 15px 50px 15px 50px;
  border-radius: 5px;
}

.main-content1-link:hover {
  background-color: #34a853;
}

.main-content2 {
  width: 100%;
  height: 700px;
  background-image: url(../images/google-2.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.main-content-box {
  width: 350px;
  height: 300px;
  margin-top: 70px;
}

.main-content2-title {
  text-align: center;
}

.main-content2-text {
  text-align: justify;
  margin-top: 20px;
}

.main-content3 {
  width: 100%;
  height: 700px;
  background-image: url(../images/google.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-content4 {
  width: 100%;
  height: 700px;
  background-attachment: fixed;
  background-image: url(../images/google-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*===== Footer Style =====*/

.footer {
  width: 100%;
  height: 50px;
  background: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
}

.footer-text {
  color: #999999;
}

.footer-link {
  color: #999999;
  border-bottom: 1px solid #999999;
}

.footer-link:hover {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
