@import "fonts.css";
@import "banner.css";
@import "skills.css";
@import "contact.css";
@import "buttons.css";
@import "content-banner.css";
@import "counter.css";
@import "popup.css";

html {
    /*scroll-behavior: smooth;*/
}

body {
    margin: 0;
    padding: 0;

}

#home {
}

#home-bg {
    min-height: 100vh;
    width: 100%;

    background-image: url("../img/crbst_dscn0911-light.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(4px);
}

@keyframes opacity0to1 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


#home-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /*border-style: dotted;*/

    top: 15%;
    width: 100%;

    animation-name: opacity0to1;
    animation-duration: 500ms;
}

#home-logo {
    height: 150px;
    width: 500px;

    background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    /* offset-x | offset-y | blur-radius | color */
    filter: drop-shadow(5px 5px 10px black);
}

#line-yellow {
    height: 4px;
    width: 400px;
    background-color: #ffea7e;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.title {
    font-family: now-medium, sans-serif;
    text-align: center;
    font-weight: normal;
}

#home-title {
    font-size: 2em;
    margin-bottom: 0;
}

#home-sub-title {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0.7;
}


#home-infos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /*border-style: dotted;*/

    margin-top: 30px;
}

#home-skills {
    font-size: 1.8em;
    font-family: now-regular, sans-serif;
}

#home-skills .hs-blue {
    color: #171779;
}

#home-certifications {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 30vw;
    flex-wrap: wrap;
    margin-left: 3vw;
}

#home-certifications * {
    /* offset-x | offset-y | blur-radius | color */
    filter: drop-shadow(5px 5px 5px black);
    transition: transform 500ms;
}

#home-certifications *:hover {
    transform: scale(1.05);
}

#home-certifications p {
    font-family: now-medium, sans-serif;
    color: white;
    text-align: center;
    background-color: rgb(16, 39, 117);
    padding: 10px;
    border-radius: 20px;
}

#home-certifications img {

    margin: 10px;
}

#home-certifications div {
    /* color | offset-x | offset-y | blur-radius */
    text-shadow: black 10px 10px 10px;
}

/*-------------------------------------------------*/

#captronic-img {
    width: 150px;
}

#home-made-in-france-img {
    width: 300px;
}

/*-------------------------------------------------*/

#footer-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: rgb(51, 51, 54);
    font-family: now-medium, sans-serif;
    font-size: 0.7em;
}

#footer-section p, #footer-section a {
    text-decoration: none;
    color: white;
    padding: 5px;
}

#footer-section a {
    text-decoration: underline;
}

#footer-section div {
    color: white;
    padding: 5px;
    font-size: 1.7em;
}