@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
    font-family: "Nunito";
    src: url(../fonts/Nunito-Regular.ttf)
}

ul.points li::before {
  content: '' !important;
	background-image: url(../images/check.svg);
	display: inline-block;
  background-size: 25px 25px;
  background-repeat: no-repeat;
	height: 25px;
	width: 25px;
  flex-shrink: 0;
}

ul.points li {
  display: flex; /* Flex-Container für das Listenelement */
  align-items: center; /* Vertikal zentrieren */
  margin-top: 25px; /* Abstand oben, ersetzt mt-[25px] */
  padding-right: 0;
  gap: 0.5rem;
}

ul.points p {
  flex-wrap: wrap;
}

ul.points li:first-child {
  margin-top: 0; /* Kein Abstand oben für das erste Listenelement */
}

ul.points {
  padding-left: 0; /* Entfernen des Standard-List-Paddings */
  list-style-type: none; /* Keine Standard-List-Zeichen */
}



ul.ssl li::before {
  content: '' !important;
	background-image: url(../images/green\ check.svg);
	display: inline-block;
  background-size: 25px 25px;
  background-repeat: no-repeat;
	height: 25px;
	width: 25px;
  vertical-align: middle;
  flex-shrink: 0;
}

.mockup {
    background-image: url(../images/mockup.png);
}

.fullscreen {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex; 
    justify-content: center; 
    align-items: center;
    object-fit: cover;
    width: 100%;
    max-height: 100%;
}

.grid-style {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-row-reverse {
    display: grid;
    grid-auto-flow: column;

}

.grid-reverse {
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: 1fr 1fr;
}


  #waves-reverse {
    transform: rotate(180deg) scaleX(-1);
    margin-top: -50px;
  }

  .topnav {
    overflow: hidden;
    position: relative;
    
  }
  
  .topnav #myLinks {
    display: none;
  }
  
  .topnav a.icon {
    display: block;
    color: black;
    font-size: 22px;
  }


  
  .active {
    background-color: white;
    color: white;
    height: 80px;
  }
.item {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);  
}

  .item:hover{
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);  
  }

  svg {
  display: block;
}

div {
  margin: 0;
  padding: 0;
}
