html{
  font-size: 16;
  line-height: 1.5;
} 
body {
    padding: 0;
    margin: 0;
    background-image: url("https://i.ytimg.com/vi/undYXrdbojQ/maxresdefault.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-size: 100vw 100vh;
    font-family: sans-serif;
}

/*body {
  align-items: center;
  justify-content: center;
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  background-image: url("https://i.ytimg.com/vi/undYXrdbojQ/maxresdefault.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 10px 10px 5px #aaaaaa;
  background-size: 100vw 100vh;
}*/
title{
  text-align: center;
  margin-bottom: 5vh;
  font-size: 1.8rem;
} 

/*navigation styles*/
#navbar {
    position: fixed;
    top: 0;
    background-image: linear-gradient(to right, rgba(255,0,0,0), rgb(84, 194, 238));
    width: 100vw;
}

#navbar ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
}

#navbar ul li a {
    display: block;
    padding: 15px;
    margin-right: 2vw;
    text-decoration: none;
}

#navbar ul li a.active {
    color:pink;
}
/*Welcome screen style */
  #welcome-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(250, 6, 108);
    font-size: 2rem;
    margin: -15vh 5vw 10vh 5vw;
    font-family: Arial, Helvetica, sans-serif;
    font-variant: small-caps;
    cursor: default;
    background-image: url("https://i.pinimg.com/originals/5b/dc/6c/5bdc6ce2d901c3d5f2c2142c5a938672.jpg");
}

/* About  section styles */
.aboutBox {
    min-height: 100vh;
    padding: 5vw;
    color: black;
    background-color: lightblue;
}
.aboutBox p {
    text-align: justify;
}
.form {
  border: 2px solid  rgb(84, 194, 238);
  border-radius: 5px;
  width: 90%;
  height: 90%;
  border-left: 6px solid  rgb(84, 194, 238);
  background-color: rgb(84, 194, 238);
}

#your-name {
  color: rgb(250, 6, 108);
  text-align: center;
  box-shadow: 10px 10px 5px #036e72;
}

input,
select {
  float: right;
}
select {
  width: 162px;
}
input[type='checkbox'], input[type='radio'] { 
    float: left;
    margin-right: 10px;
} 
input[type='submit'] { 
    float: left;
    margin: 10px 0; 
    padding: 10px 40px;
    background-color: black;
} 
input[type='submit'], fieldset, textarea { 
    border-radius: 5px; 
    background-color: black;
} 

select { 
    width: calc(100% - 4px); 
    } 
select {
  width: 162px;
}
/* Contact section styles */
.contactBox {
    min-height: 1vh;
    text-align: center;
    font-size: 1rem;
    padding: 5vw;
    color: white;
    background-color: rgb(228, 130, 171);
    box-shadow: 10px 10px 5px #10756d;
}

.contactBox p {
    margin-top: 10vh;
    font-size: 1.25rem;
}

.contactBox .links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contactBox #profile-link, .contactBox .logo {
    text-decoration: none;
    color:  rgb(127, 128, 133);;
    border: 1px solid  rgb(127, 128, 133);
    padding: 10px;
}

.contactBox #profile-link:hover, .contactBox .logo:hover {
    background-color: white;
}


/*Footer styles */
footer{
  background-color: pink;
  box-shadow: 10px 10px 5px #10756d;
}