@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import "./modules/header.css";
@import "./modules/footer.css";
@font-face {
    font-family: 'Calibri';
    src: url(./fonts/calibri/calibri.ttf);
    font-display: swap
}

@font-face {
    font-family: 'Calibri Bold';
    src: url(./fonts/calibri/calibri_bold.ttf);
    font-display: swap
}
@font-face {
	font-family: 'LillyBelle';
	src: url(./fonts/lillybelle/LillyBelle.eot);
	src: local('☺'), 
		 url(./fonts/lillybelle/LillyBelle.wof) format('woff'), 
		 url(./fonts/lillybelle/LillyBelle.ttf) format('truetype'), 
		 url(./fonts/lillybelle/LillyBelle.svg) format('svg');
	font-weight: normal;
	font-style: normal;
    font-display: swap
}

html,
body {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
    scroll-behavior: smooth
}
.container{
    overflow: hidden;
}
@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
      max-width: 100%;
    }
  }


  .alert .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFF;
}

.alert p{padding-top: 2rem;}
.alert {
    position: fixed;
    top: 40%;
    display: flex;
    margin-inline: auto;
    justify-content: center;
    width: 30%;
    border: 2px solid;
    background: #000;
    color: #FFF;
    z-index: 100;
}

@media(max-width:500px) {
    .alert {
        width: 90%;
    }
}