*{
    box-sizing: border-box;
}
html, body{
    margin: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden ;
    scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6, p, textarea, input{
    font-family: 'Satoshi', sans-serif;
}
.content{
    max-width: 1200px;
    margin: auto;
    position: relative;
    padding: 60px 20px;
}
.ghost-button{
    height: 40px;
    width: 120px;
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid #F0BA3E;
    margin-left: 15px;
    transition: .1s;
    cursor: pointer;
    color: #F0BA3E;
}
.btn{
    height: 40px;
    width: 120px;
    background-color: #F0BA3E;
    margin-left: 15px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0px 5.7px 0px #F0BA3E;
    transition: .1s;
    color: white;
}
.btn.get-started {
    text-decoration: none;
    text-align: center;
    font-family: 'Satoshi', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn:hover{
    transform: scale(1.019);
}
.ghost-button:hover{
    background-color: #F0BA3E;
}
.ghost-button:hover a{
    color: white;
}
.ghost-button:hover{
    color: white;
}
.btn:active{
    transform: scale(1);
}
.btn a,.ghost-button a{
    margin: 0;
    color: white;
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
}
.btn-full{
    width: 100%;
    margin: 0;
}
.ghost-button a{
    color: #F0BA3E;
}
.overlay{
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, 0.5);
}
