@font-face {
	font-display: swap;
	font-family: "Fontfabric";
	src: local(""),
		url('./fonts/Fontfabric_NexaXBold.otf') format("opentype");
}
@font-face {
	font-display: swap;
	font-family: "learningCurve";
	src: url('./fonts/learning_curve_bold_ot_tt.ttf') format("truetype");
}

h1 {
    font-family: 'Fontfabric';
}
.headSection {
    background: radial-gradient(circle, rgb(161 93 75) 45%, rgba(0, 0, 0, 0) 100%);
}
.headbandDisclamer {
    margin: auto;
    height: 320px;
    width: 800px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: initial;
    background-image: url(./images/bbm_int.jpeg);

    background-attachment: fixed;
    position: relative;
    background-position-y: -250px;
}
.circle {
    width: 200px;
    height: 200px; 
    border-radius: 50%;
    overflow: hidden; 
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -12%;
    left: -2%;
    border: 6px solid #fff; 
}
.logo {
    max-width: 180px;
}
.disclamer {
    margin-bottom: 5em;
}
.disclamer, .p {
    font-family: 'Fontfabric';
    font-size: medium;
    font-weight: 500;
}
.disclaimerIntro {
    font-size: larger;
}
.disclaimerInfo {
    font-style: italic;
}
.textContent {
    margin: 3em;
}
ul {
    line-height: 1.7;
}
.btn-disclaimer{
    padding: 1rem 2.2rem;
    font-size: 16px;
    color: #fff;
    border: 2px solid #000;
    position: relative;
    overflow: hidden;
}
.btn-disclaimer::before{
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000d;
    transition: all 0.5s;
    transition-delay: 0.2s;
}
.btn-disclaimer::after{
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000d;
    transition: all 0.5s;
    transform: translate(0, 0);
}
.btn-disclaimer:hover::before{
    transform: translate(13%, 190%) rotate(-30deg);
}
.btn-disclaimer:hover::after{
    transform: translate(-13%, -190%) rotate(-30deg);
}
.btn-disclaimer:hover{
    color: #000;
    border: 2px solid #000;
}

@media screen and (max-width: 800px) {
    .headbandDisclamer {
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .circle {
        top: 82%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
    }
    .textContent {
        margin: 5px;
    }
    .disclamer, .p {
        font-size: 14px;
    }
}