@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  /*  background-color:#F9FAFB; */
  background-color: black; 
   font-family: "Lato", sans-serif;
   color: #F9FAFB;
}

.hero-image {
      max-height: 500px;
    max-width: 600px;
}

img {
    height: 100%;
    width: 100%;
}

/* #63b3d4 */
/* #F9FAFB */
 
header {
    background-color: #63b3d4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
   margin-bottom: 100px;
}

header nav ul {
    display: flex;

}

header nav ul li {
    list-style-type: none;
    padding: 20px 30px;
    border-radius: 20px;
}

header nav ul li:hover {
    background-color: #F9FAFB;
    cursor: pointer;
    color: black;
}

.logo {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 900;
}

.hero {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;

}

.hero-text {
    text-transform: uppercase;
    
    padding: 30px 50px;
}

.hero-text h1 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.hero-text p {
    margin: 50px 0;
    font-size: 1.3rem;
}

button {
    margin-top: 50px;
    background-color: #63b3d4;
    border: none;
    padding: 15px 25px;
    border-radius: 20px;
    font-family: "Lato", sans-serif;
}

button:hover {
    cursor: pointer;
    background-color: #9bd4ec;
}
.bold-blue {
    font-size: 2.3rem;
    color: #63b3d4;
}

.about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 50px;
}

.about h1 {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.about p {
  font-size: 1.2rem;
  line-height: 2;
}