* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: Arial, Helvetica, sans-serif;

}
body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

  &::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-image: url(about.jpg);
    background-size: cover;
    background-position: top center;
    opacity: 0.50;
  }
}

.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: 25px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin: 0 20px;
}
.navbar a:hover,
.navbar a.active {
    color: blue;
}
.home-content i {
    font-size: 24px;
    margin: 15px 0 30px;
    color: white;
    justify-content: center;
    align-items: center;
}
.icons {
    display: inline-block;
    position: fixed;
    top: 20%;
    left: 25%;
    justify-content: space-between;
    flex-direction: column;
    font-size: 40px;
    color: black;
}
iframe{
    width: 80%;
    height: 550px;
}


