/*

section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-image: url(purple_cloud.webp);
    background-repeat: no-repeat;
    background-size: cover;
}



.content{
    max-width: 800px;
    margin: 60px 100px;
}

.content .info h2{
    color: black;
    font-size: 55px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 60px;
    margin-bottom: 15px;
}

.content .info h3{
    color: black;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 60px;
    margin-bottom: 5px;
}

.content .info p{
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 40px;
}

.content .info ul{
    color: black;
    padding-left: 50px;
    font-size: large;
}

.content .sign-btn{
    color: white;
    background: #500A8E;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 20px;
    border-radius: 5px;
    transition-property: background;
    margin-bottom: 40px;
}

.content .sign-btn:hover {
    background: #C365E3;
}

img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
  
  body{
    margin:0;
    font-family: sans-serif;
    font-size:17px;
    color: black;
    line-height:1.6;
  }
  header{
    position: relative;
    top: 0;
    width: 100%;
    padding: 2px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo{
    position: relative;
    color: black;
    font-size: 40px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
}

header .navigation a{
    color: #500A8E;
    background: transparent;
    text-decoration: none;
    color: black;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 15px;
    border-radius: 10px;
    font-size: 20px;
}

header .navigation a:not(:last-child){
    margin-right: 10px;
}

header .navigation a:hover{
    color: white;
    background: #9477cb;
}

  #showcase{
    background-image:url('welcome.png');
    background-size:cover;
    background-position:center;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
  }
  
  #showcase h1{
    font-family: 'Javanese Text';
    font-size:90px;
    line-height:1.2;
  }
  
  #showcase p{
    font-family: Arial, Helvetica, sans-serif;
    font-size:30px;
  }
  
  #showcase .button{
    font-size:20px;
    text-decoration:none;
    color:#fff;
    border:#500A8E 1px solid;
    background:#9477cb;
    padding:10px 20px;
    border-radius:10px;
    margin-top:10px;
  }
  
  #showcase .button:hover{
    background:#ffffff;
    color:#000;
  }
  
 
  