/* GENERAL STYLES */
/* ## */

/* Google Font */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700|Roboto:400,700,900&display=swap");
/*  */

/*
=============== 
Global Styles
===============
*/

:root {
    scroll-behavior: smooth;
    --blue-text:hsl(240, 93%, 16%);
    --dark_blue: hsl(240, 93%, 36%);
    --medium_blue: #379cba;
    --light_blue: hsl(209, 100%, 95%);
    --purple: #730057;
    --yellow: hsl(42, 84%, 64%);
    --dark_yellow: hsl(42, 64%,34%);
    --clr-white: #fff;
    --ff-primary: "Roboto", sans-serif;
    --ff-secondary: "Open Sans", sans-serif;
    --transition: all 0.3s linear;
    --spacing: 0.25rem;
    --radius: 0.5rem;
    --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --max-width: 1170px;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ff-secondary);
    background: var(--clr-white);
    color: var(--blue-text);
    line-height: 1.5;
    font-size: 0.875rem;
}

.underline {
    width: 5rem;
    height: 0.2rem;
    margin-left: 0;
    margin-bottom: 1.25rem;
    background: var(--medium_blue);

}

.section-title {
    margin-bottom: 2.5rem;
    text-align: center;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

img:not(.nav-logo) {
    width: 100%;
    display: block;
}

h1,
h2,
h3,
h4 {
    letter-spacing: var(--spacing);
    text-transform: capitalize;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    font-family: var(--ff-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 0.875rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--clr-grey-5);
}

@media screen and (min-width: 800px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1rem;
    }

    body {
        font-size: 1rem;
    }

    h1,
    h2,
    h3,
    h4 {
        line-height: 1;
    }
}

/*  global classes */

.btn {
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--clr-primary-1);
    padding: 0.375rem 0.75rem;
    letter-spacing: var(--spacing);
    display: inline-block;
    font-weight: 700;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-size: 0.875rem;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
}

.btn:hover {
    box-shadow: 8px 8px 1px var(--medium_blue);    
}

/* section */
.section {
    padding: 3rem 0;
}

.section-center {
    width: 90vw;
    margin: 0 auto;
    max-width: 1170px;
}

@media screen and (min-width: 992px) {
    .section-center {
        width: 95vw;
    }
}

ul {
    list-style: none;
}

.hidden, #contact_form.hidden {
    display: none;
}

.logo_en_naam {
    display: flex;
    align-items: center;
    transition: var(--transition);
}


/* Logo in de navbar */
.main-logo {
    display: inline-block;
    width: 50px;
    height: 50px;
    /* padding: 10px; */
    background: var(--dark_blue);
    /* border:2px solid black; */
    /* border-radius: 150px; */
}

/* Container voor het logo dat iets groter is dan het logo. Als hier de border radius op wordt gezet blijven belangrijke elementen van het plaatje zichtbaar */
.img-container {
    display: grid;
    place-items: center;
    width: 65px;
    height: 65px;
    background: var(--dark_blue);
    border: 2px solid black;
    border-radius: 150px;
    overflow: hidden;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.tekst-logo {
    font-size: 2rem;
    color: black;
    /* border: 2px solid black; */
    line-height: 1.5rem;
    /* -webkit-text-stroke: 2px black; */
}

.subtitle{
    font-size: 1rem;
    padding-left: 5px;
}

.tekst-logo>span {
    color: var(--dark_blue);
}

.nav-links {
    display: none;
    color: var(--dark_blue);
}

.nav {
    z-index: 99;
    padding: 1rem 0.5rem;
    display: grid;
    align-items: center;
    transition: var(--transition);
    position: fixed;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.nav-center {
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
}

.nav-header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
}

.nav-btn {
    background: transparent;
    border-color: transparent;
    color: var(--dark_blue);
    font-size: 2rem;
    cursor: pointer;
    padding-right: .5rem;
    justify-self: end;
}

.arrow-down-small-screen{
    font-size: 3rem;
    color: var(--dark-blue);
    position: absolute;
    padding: 1rem;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    animation-name: arrow;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes arrow {
    0%   {font-size: 3rem;}
    50%  {font-size: 1.5rem;} 
    100%  {font-size: 3rem;}
    
  }
  
 


/*  */
/* CSS BIG Screen Nav */
/*  */

@media screen and (min-width: 1100px) {

    .main-logo {
        display: inline-block;
        width: 80px;
        height: 80px;
        /* padding: 10px; */
        background: var(--dark_blue);
        /* border:2px solid black; */
        /* border-radius: 150px; */
    }
    
    /* Container voor het logo dat iets groter is dan het logo. Als hier de border radius op wordt gezet blijven belangrijke elementen van het plaatje zichtbaar */
    .img-container {
        display: grid;
        place-items: center;
        width: 100px;
        height: 100px;
        background: var(--dark_blue);
        border: 2px solid black;
        /* border-radius: 150px; */
        overflow: hidden;
        margin-right: 0.5rem;
        margin-left: 1rem;
    }
    

    /* .nav {
        background: var(--dark_blue_low_opacity);
    } */

    .nav-center {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;

    }

    .nav-btn {
        display: none;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(6, auto);
        justify-self: end;
        gap: 2rem;
        padding: 2rem 4rem;

    }

    .nav-links a {
        text-transform: capitalize;
        color: var(--dark_blue);
        font-weight: bolder;
        letter-spacing: var(--spacing);
        transition: var(--transition);
        color: inherit;
    }

    .nav-links li {
        width: 100%;

        transition: var(--transition);

    }

    .nav-links li:hover {
        color: var(--dark_blue);
        background: var(--light_blue);
        border-bottom: 3px solid var(--yellow);
        border-radius: 5px;
        padding: 0.5rem;
    }


}



/*  */
/* Navbar fixed wanneer wordt gescrolld */
/*  */
/* .navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: white;
} */

/*  */
/* CSS Sidebar  */
/*  */

.sidebar .logo_en_naam {
    position: absolute;
    left: 0.5rem;
    top: 1rem;
}

.sidebar .tekst-logo {
    font-size: 1.5rem;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: var(--light_blue);
    z-index: 101;
    display: grid;
    place-items: center;
    transition: var(--transition);
    transform: translateX(-100%);
}

.sidebar-links {
    margin-top: 3rem;
    text-align: center;

}

.sidebar-links a {
    transition: var(--transition);
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--dark_blue);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.sidebar-links a:hover {
    color: black;
    background: white;
    border-radius: 15px;
    padding: 0.5rem 2rem;
    border: 2px solid var(--dark_blue);
}

.social-icons {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
}

.social-icon {
    font-size: 2rem;
    color: var(--dark_blue);
    transition: var(--transition);
}

.social-icon:hover {
    color: black;
}

.close-btn {
    position: absolute;
    top: 1.0rem;
    right: 1.5rem;
    font-size: 3.5rem;
    background: transparent;
    border: transparent;
    transition: var(--transition);
    color: darkred;
    cursor: pointer;
}

.close-btn:hover {
    color: rgb(243, 120, 120);
}

.show-sidebar {
    transform: translateX(0%);
 
}

/*  */
/* HERO SECTIE */
/*  */

.hero {

    background: var(--light_blue);
}

.hero-info h4 {
    color: black;
}

.hero .underline {
    margin: auto;
    margin-bottom: 0.5rem;
    
}

.hero-img {
    display: none;
}



.hero-center {
    margin-top: 92px;
    display: grid;
    place-items: center;
    text-align: center;
    min-height: calc(100vh - 7rem);
 }

 @media screen and (min-width: 1185px){
    .hero{
        margin-top: 132px;
        min-height: calc(100vh - 92px);
        
    }
}

.hero-btn {
    margin-top: 1.25rem;
}

/* .hero-icons{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: start;
} */


.hero-img {
    position: relative;
    display: none;
    border-radius: 200px;

    max-width: 25rem;
    /* object-fit: cover; */
    z-index: 2;
}

.hero-img::before, .about-img:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    border: 5px solid var(--yellow);
    top: -1rem;
    left: 1.5rem;
    border-radius: 250px;
    z-index: -1;
}

.about-img:before{
    top:  1rem;
    left: -1.5rem;
}

.hero-photo {
    border-radius: 200px;
    background: var(--medium_blue);
}

/* Foto laurens voor "over toetsenbordheld. Hidden bij > 768px */
#foto-laurens{
    display: none;
}

/* Enkele stijl voor max-width om de foto Laurens op mobiel te laten zien hier. */
@media screen and (max-width: 899px){
    #foto-code{
        display: none;
    }

    #foto-laurens{
        display: block;
    }
}

/* Hero stijlen voor >= 900px */
@media screen and (min-width: 900px) {

    .hero-img {
        display: block;
    }


    .hero-center {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/*  */
/* CSS Stylen voor Over mij gedeelte  */
/*  */

.about-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-title .underline {
    margin-left: 0;
}

.about-center {
    display: grid;
    gap: 3rem 2rem;
}

.about-img{
    justify-self: center;
    position: relative;
    max-height: 400px;
}



@media screen and (min-width: 992px){
    .about-center{
        grid-template-columns: 1fr 1fr;
    }
}



/* ##### */
/* PROJECTEN  */
/* ##### */

.projecten_link, .diensten_link{
    color: var(--blue-text);
    text-decoration: underline;
    transition: var(--transition);
 

}

.projecten_link:hover,.diensten_link:hover{
    color: var(--dark_yellow);
    border-bottom: 3px solid;
    text-decoration: none;
}

/*  */
/* Custom CSS doen vanaf 1250px voor 4 kaarten.  */
/*  */

/* CSS voor kleine Mobile 300px - 450px*/
/* Stijlen voor Mobile */
.container-voor-custom-websites {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    background: var(--medium_blue);
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-top: 150px;
    margin-bottom: 150px;
    border-radius: 25px;
}

.tabje {
    border-bottom: 20px solid #edd8aa;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    height: 0;
    width: 100px;
    position: relative;
    margin-left: 25px;
    z-index: 56;
    display: grid;
    place-items: center;
}

.tabje * {
    font-size: 0.75rem;
    padding: 5px;
}

.div1,
.div2,
.div3,
.div4,
.div5{
    width: 300px;
    height: 300px;
    border-radius: 25px;
    border: 3px solid #edd8aa;
    margin: auto;

}

.container-voor-custom-websites .outer-card{
    /* margin-left: -50px; */
    transform: perspective(200px) rotateY(20deg);
    padding-left: 1.5rem;
    margin-top: -55px;

}

.div1 {
    background: grey;
    background-image: url("/images/ScreenshotJadengo.png");
    background-size: cover;

}

.div2 {
    background-color: turquoise;
    background-image: url("/images/BackroadsTourCompany.png");
    background-size: cover;

}

.div3 {
    background-image: url("/images/ScreenshotTeaStation.png");
    background-color: green;
    background-size: cover;
}

.div4 {
    background-image: url("/images/Bij-Cees.webp");
    background-color: sandybrown;
    background-size: cover;
    background-position: center;
}

.div5 {
    background-image: url("/images/Oenieboe.png");
    background-color: #ffb72c;
    background-size: cover;
}

/* Stijlen voor Custom Kaarten > 450px */
@media screen and (min-width: 450px){
.container-voor-custom-websites {
    margin-top: 200px;
     margin-left: auto;     
} 

.outer-card {
    margin:auto;
}

.div1,
.div2,
.div3,
.div4,
.div5 {
    width: 75vw;
    max-width: 400px;
    height: 75vw;
    max-height: 400px;
    border-radius: 25px;
    border: 3px solid #edd8aa;
    margin: auto;
}

.container-voor-custom-websites .outer-card{
    margin-left: -50px; 
     margin-top: -55px;
}

.container-voor-custom-websites .outer-card:hover{
   margin-left: -100px;
   
}

.outer-card:hover {
    transform: scale(1.15) rotateY(0); 
    /* translateY(-15px); */
    z-index: 40;
}
}

/* onclick="" */

@media screen and (min-width: 700px){
    .container-voor-custom-websites {
        /* transform: translateX(60%);  */
        margin-left: auto;
        margin-right: auto;
        transform: translateX(25%);
        
    } 
}

@media screen and (min-width: 1000px){
    .container-voor-custom-websites {
        /* transform: translateX(60%);  */
        margin-left: 25%;
        
    } 
}

/* Stijlen voor Custom Kaarten > 1250px */
@media screen and (min-width: 1250px){
.container-voor-custom-websites {
    transform: translateX(0);
    flex-direction: row;
    padding-left: 50px;
    padding-right: 25px;
    margin: auto;
    margin-top: 200px;
    margin-bottom: 100px;
    -webkit-transform: translate3d(0,0,0);
    position: relative;
}

.tabje {
    margin-left: -25px;
}

.outer-card {
    
    transform: perspective(200px) rotateY(20deg);
}

.div1,
.div2,
.div3,
.div4,
.div5{
    width: 315px;
    height: 315px;

}

.container-voor-custom-websites div+div {
    margin-left: -50px;
}

.outer-card:hover {
     transform: perspective(0)rotateY(0) scale(1.5) translateY(-15px); 
    z-index: 40 !important;
}
}

/*  */
/* DIENSTEN STIJLEN */
/*  */

.bg-grey{
    background: var(--light_blue);
    margin: 0 auto;

}

.services-center{
    max-width: 1400px;
}

.service{
    background: white;    
    /* border-radius: var(--radius); */
    text-align: center;
    transition:var(--transition);
    overflow: hidden;
    margin: 2rem auto;
    width: 90%;
    color:hsl(240, 93%, 16%);
    border-radius: 10px;
    border: 1px solid black;
    box-shadow: 12px 12px 2px hsl(209, 100%, 70%);
}

.service:hover{
    transform: scale(1.05);
    box-shadow: 12px 12px 2px hsl(209, 100%, 40%);
}

.service i{ 
color: white;
}

.service h4{
    color: white;
}

.service-icon{
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service .underline, .underline-diensten{
    margin-left: auto;
    margin-right: auto;
    width: 3rem;
    height: 0.12rem;
    transition: var(--transition);
}

.underline-diensten{
    height: .24rem;
    width: 6rem;
}

.diensten-text-wrapper{
    text-align: left;
    transition: var(--transition);
    padding: 1rem;
    margin-bottom: 0;
 
}

.fa-angle-right{
    color: green;
}

.service-wrapper{
    padding: 3rem 1.5rem;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 1.5rem;
}

.service-wrapper-1{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/images/services-handwrittenText.jpg');
}

.service-wrapper-2{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/services-webDesign.jpg');
    background-position: center 10%;
    
}
.service-wrapper-3{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('/images/htmlCode.jpg');
}

/* Stijlen voor background gradient. Besloten niet toe te passen */
/* .gradient-wrapper{
    /* background: yellow; 
    position: relative;
    z-index:1;
    height: max-content;
    height: 75%;
}

   .gradient-wrapper::before{
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all 0.5s linear;
    background: linear-gradient(to bottom, var(--medium_blue) 5%, var(--dark_blue) 10%, var(--medium_blue ) 90%);
    opacity: 0;
    z-index: -1;
    color: white;
  }

.gradient-wrapper:hover::before{
    opacity: 1;

.gradient-wrapper:hover{
    color: white;
}
*/

/* Stijlen om bij kleiner scherm de 3e kaart in het midden te krijgen */
@media screen and (min-width: 900px){
.services-center{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.service-1{
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 1;
}

.service-2{
    grid-column-start: 7;
    grid-column-end: 13;
    grid-row-start: 1;
    grid-row-end: 1;
}

.service-3{
    grid-row: 2;
    grid-column: 4 / 10;
}
}

@media screen and (min-width: 1200px){
    .services-center{
        grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: column;  
    }

    .service-1{
        grid-column-start: 1;
        grid-column-end: 2;
    
    }
    
    .service-2{
        grid-column-start: 2;
        grid-column-end: 3;

    }
    
    .service-3{
grid-column: 3/4;
grid-row: 1;
    }

}

.diensten-ul i{
    color: var(--dark_blue);
    padding-right: 0.5rem;

}

/*  */
/* PROCESSEN */
/*  */

.timeline .underline{
    margin: auto;
}

.timeline-center{
    width:80%;
    max-width: 40rem;
}

.timeline-item{
    border-top: 2px dashed var(--dark_blue);
    margin: 0;
    padding: 3rem 2.5rem;
    position: relative;
}

.timeline h4{
    color: var(--dark_yellow);
}

.timeline p{
    margin-bottom: 0;    
}

 .timeline-item:nth-child(even){
    border-left: 2px dashed var(--dark_blue);
    border-top-left-radius: 2rem; 
    border-bottom-left-radius: 2rem;
    margin-right: 2rem;
    padding-right: 0;
}


.timeline-item:nth-child(odd){
    border-right: 2px dashed var(--dark_blue);
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    margin-left: 2rem;
    padding-left: 0;
}

.timeline-item:nth-child(5){
    border-bottom-right-radius: 0rem;    
}

.number{
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--yellow);
    transform:translate(-50%, -50%);
    font-weight: 400;
    display: grid;
    place-items: center;
}


.timeline-item:nth-child(odd) .number{
 left: 100%;
}

#naam-deel-1{
    color: black;
}

#naam-deel-2{
    color: var(--dark_blue);
}

/*  */
/* Stijlen voor Contact pagina */
/*  */



@media screen and (min-width: 1000px){
    .contact .section-center{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

}

.contact{
    background: var(--light_blue);
    padding: 4rem 0;
    
}

.contact-info i{
    color: var(--yellow);
}

.contact-form,.contact-info{
    margin: 1rem 0;
}

.contact-item{
    margin-bottom: 1.75rem;
}

.contact-title{
    color: var(--blue_text);
    
}

.contact h4.contact-text, .contact a.contact-text  {
    color: var(--blue_text);
    font-weight: 400;
}

/*  */
/* STIJLEN  FAQ*/
/*  */

.section-FAQ{
    margin-top: 0rem;
    padding-top: 0;
}

.accordion {
    padding: 2rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accordion p{
    margin-bottom: 30px;
}

.content-container{
    margin: auto;
    width: 100%;
    max-width: 1000px;
}
.content-container:hover{
    cursor: pointer; 
}

.accordion-title{
    margin-bottom: 30px;
}

.question{
    padding: 18px 18px 18px 0;
    border-bottom: 1px solid; 
    position: relative;
}

.question:hover{
    border-bottom: 2px solid var(--dark_blue);
}

.question::after{
    content: "+";
    position: absolute;
    right: -5px;
    font-size: 125%;
    transition: var(--transition);
}

.content-container.active .question::after{
    content: "-"
}

.answer{
    height: 0px;
    padding-top: 15px;
    width: 100%;
    overflow:hidden;
    visibility: hidden;
    transition: var(--transition);
}

/* Javascript styling link */
.accordion .content-container.active .answer{
    height: 150px;
    overflow-y: auto;
    visibility: visible;
    border-radius: var(--radius)
}

.accordion .content-container.active.vraag-lang-antwoord .answer{
    height: 200px;
}

.accordion .content-container.active:last-of-type .answer{
    height: 55px;
    border-radius: var(--radius)
}

.accordion a{
    text-decoration: underline;
    text-decoration-color: var(--dark-blue);
    font-weight: 500;
}


/*  Stijlen Contact Form */

/* Overlay voor als form succesvol is ingevuld */

#contact_form{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light_blue);
    border: 3px solid var(--dark_blue);
    border-radius: 20px;
    z-index: 10;
    transition: var(--transition);
    display: grid;
    place-items: center;
    align-content: center;
} 

.flex-required{
    display: flex;
    justify-content: space-between;
    padding-right: 0.5rem;
    padding-bottom: 0;
}

.flex-required i{
    align-self: flex-end;
}


#contact_form i{
    color: green;
    font-size: 2.5rem;
}

#formulier_terug{
    width: fit-content;
    background: inherit;
    border: transparent;
    position: absolute;
    top: -1rem;
    right: 1rem;
}

#formulier_terug .btn{
    background: inherit;
    border: 0;
    box-shadow: initial;
    padding: 0;
    font-size: 3.5rem;
    color: darkred;

}

#contact_form h3{
    text-transform: none;
}

.contact-form{
    position: relative;
    background: white;
    /* border-radius: var(--radius); */
    border-radius: 20px;
    text-align: left;
    box-shadow: 12px 12px 2px hsl(209, 100%, 70%);
    transition:  var(--transition);
    max-width: 40rem;
    overflow: hidden;
    }



.contact-form:hover{
    box-shadow: 12px 12px 2px hsl(209, 100%, 30%)
}

.contact-form h3{
    padding: 1.25rem;
    color: var(--blue_text);
    text-align: center;
}

.form-group{
    padding: 1rem 1.5rem;
    position: relative;

}

.form-control{
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    margin-bottom: 1rem;
    border: 0;
    background: var(--light_blue);
    border-radius: var(--radius);
 }

.contact-form button{
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    transform: var(--transition);
    border-radius: 0;
}

.contact-form button:hover{
    text-decoration: underline;
    transform: scale(1.25);
    background: var(--yellow);
    
}
/*  */
/* Footer  */
/*  */

footer{
    padding: 3rem;
    background: var(--blue-text);
    display: grid;
    place-items: center;
}

footer p{
    color: white;
    padding: 1rem;
    margin: 0;
}

::placeholder{
    font-style: italic;
}