/* ============================   GENERAL   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

html {
    scroll-behavior: smooth;
}

html, body {
  padding: 0;
  margin: 0;
  background-color: #030327;
}

html p {
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.orange {
    font-weight: 800;
    color: #eeb500;
}

.dark {
    font-weight: 800;
    color: #030327;
}

mark {
    background-color: #eeb500;
}

.circle-sketch-highlight{
    position:relative;
    left:0.5em;
    font-family: Libre Franklin;
    font-size: 32px;
    font-weight: 500;
  }
  .circle-sketch-highlight:before{
    content:"";
    z-index:-1;
    left:-0.5em;
    top:-0.1em;
    border-width:2px;
    border-style:solid;
    border-color:#ef8c22;
    position:absolute;
    border-right-color:transparent;
    width:100%;
    height:1em;
    transform:rotate(2deg);
    opacity:0.7;
    border-radius:50%;
    padding:0.1em 0.25em;
  }
  .circle-sketch-highlight:after{
    content:"";
    z-index:-1;
    left:-0.5em;
    top:0.1em;
    padding:0.1em 0.25em;
    border-width:2px;
    border-style:solid;
    border-color:#ef8c22;
    border-left-color:transparent;
    border-top-color:transparent;
    position:absolute;
    width:100%;
    height:1em;
    transform:rotate(-1deg);
    opacity:0.7;
    border-radius:50%;
  }

  .realistic-marker-highlight{
    position:relative;
    color: #ffffff;
    font-family: Libre Franklin;
    font-size: 32px;
    margin-left: 15px;
    font-weight: 500;
  }
  .realistic-marker-highlight:before{
    content:"";
    background-color:#ef8c22;
    width:100%;
    height:1.3em;
    position:absolute;
    z-index:-1;
    filter:url(#marker-shape);
    left:-0.25em;
    top:-0.05em;
    padding:0 0.30em;
  }


/* ============================   CONTAINER   ============================ */

.container-main {
    padding-left: calc(10px + 2vh);
    padding-right: calc(10px + 2vh);
}

@media only screen and (min-width: 800px) {
    .container-main {
        padding-left: calc(10px + 6vh);
        padding-right: calc(10px + 6vh);
    }
}

@media only screen and (min-width: 1000px) {
    .container-main {
        padding-left: calc(10px + 12vh);
        padding-right: calc(10px + 12vh);
    }
}

@media only screen and (min-width: 1200px) {
    .container-main {
        padding-left: calc(10px + 40vh);
        padding-right: calc(10px + 40vh);
    }
}


/* ============================   HEADER   ============================ */

#header img {
    position: relative;
    max-width: 350px;

}

#header {
    background-color: #0f0f0f;
    background-image: url(../img/header.png);
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 50px 0;
}

/* ============================   INTRO  ============================ */

#intro {
    background-color: #047ef4;
    padding-top: 50px;
    padding-bottom: 50px;
}

#intro p {
    color: #ffffff;
    text-align: left;
    font-size: 1.5em;
}

/* ============================   TEAM   ============================ */

#team {
    background-color: #030327;
    color: #ffffff;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#team img {
    max-width: 150px;
    padding-bottom: 15px;
}

.team-member {
    padding-top: 20px;
    max-width: 250px;
    min-width: 250px;
    padding-left: 10px;
    padding-right: 10px;
}

.team-name {
    font-size: 1.3em;
    color: #eeb500;
}

.team-title {
    font-size: 1.1em;
}

.team-desc {
    font-size: 0.9em;
}

/* ============================   CONTACT   ============================ */

#contact {
    background-color: #047ef4;
    padding-top: 50px;
    padding-bottom: 50px;
}

#contact p {
    color: #ffffff;
    text-align: left;
    font-size: 1.5em;
}

#contact button {
    margin-top: 20px;
    background-color: #eeb500;
    color: #000000;
}

/* ============================   FOOTER   ============================ */

#footer {
    background-color: #030327;
    color: #ffffff;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
}






