body {

	
}
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
    
body {
  font-family: sans-serif;
}
    
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #0479df;
}

.logo {
 font-family: sans-serif;
 font-weight: bolder;  
 font-size: 26px;
 color: white;
 text-decoration: none;
 line-height: 70px;
 margin-left: 20px;
}

nav ul {
 float: right;
 background-color: #0479df;
}
    
nav ul li {
 font-family: sans-serif;
 display: inline-block;
 font-size: 19px;
 line-height: 70px;
 padding: 0 15px;
}
nav ul li a {
 text-decoration: none;
 color: white;
}

nav ul li a:hover{
 color: #09eff3;
}

.center {
  margin-left: auto;
  margin-right: auto;
}
.buttonSC {
  background-color: #0078d0;
  border: 0;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  padding: 16px 21px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.buttonSC:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

.buttonSC:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .buttonSC {
    padding: 16px 48px;
  }
}