@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
/* Default body */

* {
    padding: 0px;
    margin: 0px;
}




/*Middle Body*/

.middle-container {
    display: flex;
}

.content_box,
.image1 {
    width: 50%;
    box-sizing: border-box;
    /* Ensures padding and borders don't affect width */
    padding: 20px;
    /* Adjust padding as needed */
}

.image1 img {
    width: 100%;
}

.content_box {
    width: 50%;
    box-sizing: border-box;
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}  

.waviy {
    position: relative;
  }
  .waviy span {
    position: relative;
    display: inline-block;
    font-size: 100px;
    color: black;
    text-transform: uppercase;
    animation: flip 2s infinite;
    animation-delay: calc(.2s * var(--i))
  }
  @keyframes flip {
    0%,80% {
      transform: rotateY(360deg) 
    }
  }

.content_box {
    background-color: #ece0e0;
}

.image1 {
    background-color: #eaeaea;
}


/* Responsive adjustments */

@media screen and (max-width: 935px) {
    .middle-container {
        flex-direction: column;
    }
    .content_box,
    .image1 {
        width: 100%;
    }
}


@media screen and (max-width: 450px){
    .waviy span{
        font-size: 50px;
    }
}


.What-SSL{
    padding: 20px;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(23, 23, 44);
}

.Secure-Sockets-Layer{
    padding: 10px;
    text-align: center;
    font-size: larger;  
}

.What-SSL-Answer{
    text-align: center;
    padding: 10px;
    font-size: 20px;
}

/*Products_Container*/

.products_container {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);
.products_banner h1 {
    padding: 10px;
    position: relative;
    color: hsl(0, 87%, 25%);
    font-weight: bolder;
    font-family: "Anonymous Pro", monospace;
    letter-spacing: 2px;
    overflow: hidden;
    border-right: 2px solid hsl(0, 87%, 25%);
    white-space: nowrap;
    animation: typewriter 4s steps(44) 1s 1 normal both, blinkTextCursor 500ms infinite;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blinkTextCursor {
    from {
        border-right-color: hsl(0, 0%, 80%);
    }
    to {
        border-right-color: transparent;
    }
}

.products {
    display: flex;
    padding: 20px;
    align-items: center;
}

.product1,
.product2,
.product3 {
    width: 33%;
    /* Each feature takes full width of the container */
    text-align: center;
    /* Center text within each feature */
    padding: 20px;
    margin: 20px;
    box-sizing: border-box;
    /* Include padding in width calculation */
    box-sizing: border-box;
    background-color: rgb(165, 208, 233);
    border-radius: 5px;
    color: rgb(104, 8, 8);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.products h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border-radius: 3px;
    background-color: #eaeaea;
    padding: 5px;
    margin: 10px;
}

.products ol {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.products ol li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.products ol li::before {
    content: '\2713';
    /* Unicode character for checkmark */
    font-size: 1.2em;
    margin-right: 5px;
    color: #28a745;
    /* Set color for the checkmark */
}

.products h2 {
    background-color: #007bff;
    /* Set background color for the h2 element */
    color: #fff;
    /* Set text color for the h2 element */
    padding: 10px;
    font-size: 1.2rem;
    margin: 0;
    border-radius: 5px;
}

.products :hover {
    box-shadow: 0 4px 8px 0 rgba(47, 10, 95, 0.2), 0 6px 20px 0 rgba(25, 12, 61, 0.19);
}

@media screen and (max-width:970px) {
    .products {
        flex-direction: column;
    }
    .product1,
    .product2,
    .product3 {
        width: 100%;
    }
    .products_banner h1 {
        font-size: 15px;
        width: 100%;
        align-items: center;
    }
    
}

