@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    /* --red--: #8A0900;
    --skin-color--: #D1AA67; */
    /* #FFF8AD */
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Montserrat", sans-serif;
}

h1,h2,h3,h4,h5,h6{
    color: #000;
}

p{
    font-size: 16px;
    margin: 0;
    color: #000;
}

header{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 5%;
    justify-content: space-between;
    align-items: center;
}

header h1{
    font-size: 26px;
    font-weight: 600;
    /* color: #02a653; */
    color: #0033a0;
}

.questions{
    width: 100%;
    border: 2px solid #A1C3D2;
    /* background: #d4f0e2; */
    background: #4867aa;
    padding: 10px 20px;
    border-radius: 10px;
}

.questions h2{
    font-size: 20px;
    color: #fff;
}

.form-label{
    color: #fff;
}

.form-check-label{
    color: #fff;
}

.btn-success {
    color: #fff;
    background-color: #4867aa;
    border-color: #4867aa;
}

.btn-success:hover {
    color: #fff;
    background-color: #4867aa;
    border-color: #4867aa;
}