/* CSS start */
html,body{
    background: linear-gradient(160deg, rgb(255, 123, 0) 20%, rgb(255, 217, 0) 100%);
    font-family:"Poppins",sans-serif;
    font-size:15px;
    line-height:1.5;
    text-align:center;
    list-style-position: inside;
    color: rgb(250, 250, 230)
}

html{
    overflow-x:hidden
}

header{
    position:relative;
    display:block;
    padding:0;
    top:0;
    height:auto;
}

img{
    vertical-align:middle;
    border-style:none;
    width:200px;
    border-radius:100px;
    margin:10% auto 5% auto;
}

h1{
    font-size:24px;
    font-weight:400;
    margin:10px 0 0 0;
    text-transform:uppercase
}

h2{
    font-size:24px;
    font-weight:400;
    margin:0 0 50px 0;
}

.icon::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
  }

.accordion{
    background-color: rgb(255, 123, 0);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size:18px;
    font-weight:400;
    margin:10px auto;
    border-radius:50px;
    width:250px;
    padding: 10px;

}

.active, .accordion:hover {
    background-color: rgb(250, 250, 230);
    color:rgb(255, 174, 0);
    transition: all 0.5s ease-in-out ;
  }

.accordion:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0dd"; /* Unicode character for "plus" sign (+) */
    float: right;
    margin-left: 5px;
    transition: transform 0.5s;
  }
  
.active:after {
    transform: rotate(180deg); /* Unicode character for "minus" sign (-) */
  }

.panel{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

a{
    color:inherit;
    text-decoration:none;
    transition: color 0.5s;
}

a:hover{
    color:rgb(255, 123, 0);
}

p{
    font-size:14px;
    font-weight:300;
    margin:20px 0
}

article{
    margin-top:5%;
}

.social{
    display: flex;
    justify-content:center;  
    transition: max-height 0.2s ease-out;  
}

.social a{
    font-size:30px;
    padding:20px;

}

footer{
    padding:50px
}

footer p{
    font-size: 10px;
    margin: 50px auto;
}


