html {
    color: #01012c;
    font-family: "NotoSans", sans-serif;
    font-size: 18px;
    background-color: #0e0e2c;
}

@font-face {
  font-family: "NotoSans";
  src: url("fonts/NotoSans-VariableFont_wdth\,wght.ttf") format("woff2 supports variations"),
       url("fonts/NotoSans-VariableFont_wdth\,wght.ttf") format("woff2-variations"),
       url("fonts/NotoSans-Italic-VariableFont_wdth\,wght.ttf") format("woff2 supports variations"),
       url("fonts/NotoSans-Italic-VariableFont_wdth\,wght.ttf") format("woff2-variations");
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
    font-family: "Doto";
    src: url("fonts/Doto-VariableFont_ROND\,wght.ttf") format("woff2 supports variations"),
         url("fonts/Doto-VariableFont_ROND\,wght.ttf") format("woff2-variations");
    font-weight: 100 1000;
    font-display: swap;
}

body {
    max-width:  800px;
    margin: 0 auto;
    padding: 0 20px; 
    line-height: 1.5;   
}

h2, h3, h4, h5, h6 {
    font-weight: 500;
}

h2 {
    font-size: calc(1.5rem + 1.5vw);
}

.c-h2 {
    margin-bottom: 12px;
}

main {
    min-height: calc(100vh - 200px);
}

body > main a {
    color: #ef3050;
    text-decoration: none;
}

body > main a:visited,
body > main a:focus,
body > main a:hover,
body > main a:active {
    text-decoration: underline;
}

.logo-container a,
.logo-container a:visited,
.logo-container a:focus,
.logo-container a:hover,
.logo-container a:active {
    text-decoration: none;
}

.logo {
    font-family: "Doto", "Roboto";
    color: transparent;
    background: linear-gradient(135deg, #F2C511, #ef3050, #2980B9, #db35d5, #01012c);
    background-clip: text;
    font-size: calc(1.5rem + 2vw);
    margin: 25px 0px;
    font-weight: 800;    
}

.light-text {
    color: #d5d5d5;
}


.lead-p {
    font-size: calc(1rem + 1.5vw);
}

.services-container {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(290px, 1fr));
    place-items: center;
    gap: 50px;

}

.service-box {
    background-color: rgb(242, 240, 240);
    padding: 35px 20px;  
    border-radius: 10px;  
    text-align: center;
       
}
.pink-icon {
    background-color: #ef3050cc;
    border-radius: 50%;
    padding: 10px;
}

.lead-svg {
    display: grid;
    place-items: center;
}

.card-container {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px;
}

.card {
    border-radius: 10px;
    
}
.card img {
    max-width: 100%;
    height: auto;
}

/*=====SPACERS=====*/
.pt-spacer-15 {
    padding-top: 15px;
}
.pb-spacer-25 {
    padding-bottom: 25px;
}

.pb-spacer-30 {
    padding-bottom: 30px;
}

.mb-spacer-10 {
    margin-bottom: 10px;
}

section {
    margin-bottom: 100px;
}


footer {
    padding:50px 20px;
   
}

.copyright {
    text-align: center;
    font-size: smaller;
}

/*===== CONTACT PAGE =====*/
.c-span {
    color: #ef3050;
}

/*Asali pot sets the styling of the honeypot spam bot fields*/
.asalipot {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/*===== THANK YOU PAGE =====*/

.center {
    text-align: center;
}