* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;

}
body {
    background-image: url(heroimg1.jpeg);
background-size: cover;

}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 8%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    
}

.logo {
    font-size: 25px;
    color: black;
    text-decoration: none;
    font-weight: 600; 

}
.logo span {
    font-size: 25px;
    color: blue;
    text-decoration: none;
    font-weight: 600; 

}

.navbar a {
    font-size: 18px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin: 0 20px;
}
.navbar a:hover,
.navbar a.active {
    color: blue;
}
.home {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 50px 8% 0;

}

.home-content {
    max-width: 630px;
}

.home-content h1 {
    font-size: 50px;
    line-height: 1.2;
    color: aliceblue;

}

.home-content h3{
    font-size: 40px;
    color: blue;
}

.home-content p {
    font-size: 20px;
    margin: 15px 0 30px;
    color: white;

}

.btn {
    display: inline-block;
    padding: 10px 28px;
    background: red;
    border: 2px solid red;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.5s;
}

.btn:hover {
    background: transparent;
    color: red;
}

