* {
    font-family: Arial, Helvetica, sans-serif;
}

/* .landingpage{

} */

body{
    margin: 0;
    padding: 0;
}

.center{
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.center-text{
    text-align: center;
}

.grey-text{
    color: rgb(100, 100, 100);
    font-size: 22px;
}

.container-hero, .container-products, .container-footer{
    width: 960px;
}

.title-landingpage{
    margin-top: 70px;
    display: block;
    font-size: 72px;
}

.container-container-products{
    background-color: rgb(240, 240, 240);
    padding-top: 70px;
    padding-bottom: 200px;
}

.hero-cta-button{
    margin-top: 20px;
    margin-bottom: 60px;
}

.flexcontainer-products{
    display: grid;
    grid-template-columns: 50%;
}

.grid-left{
    grid-column: 1 / 2;
}

.grid-right{
    grid-column: 2 / 3;
}

.product-img{
    width: 450px;
}

h2{
    font-size: 48px;
}

.product-cta-button{
    margin-top: 30px;
}

.product-text{
    width: 250px;
    display: block;
}

.cta-button{
    background-color: black;
    color: #fff;
    border-radius: 5px;
    border-style: none;
    padding: 10px 15px;
}

.container-footer{
    height: 100px;
}

.container-container-footer{
    background-color: #222222;
}

/* Footer Menu */

.footer-li {
    list-style-type: none;
    color: white;
    text-decoration: none;
}

.footer-li > a:visited, .footer-li > a:link{
    text-decoration: none;
    color: white;
}

.footer-item{
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 5px;
}

.footer-item:hover{
    background-color: white;
    color: black !important;
    border-radius: 5px;
}

.footer-ul > .footer-li {
    display: inline-block;
    text-decoration: none;
}

.footer-menu{
    padding-top: 25px;
    width: fit-content;
    float: left;
}

.language-menu{
    padding-top: 13px;
    float: right;
}

.active > a {
    background-color: white;
    color: black !important;
    border-radius: 5px;
}