body {
    font-family:'Lexend',Poppins,Arial,sans-serif;
    background:#171c2c;
    background:radial-gradient(circle at bottom,#171c2c, #0f1219);
    color:#ffffff;
    min-height:calc(100vh - 4em);
    padding:2em;
    margin:0;
    display:grid;
    place-items:center;
    text-align:center;
    }
    h1,h2 {
    margin:0;
    color:#ffffff;
    }
    h1 {
    color:#2ab7ff;
    font-size:2.25em
    }
    h2 {
    color:#ffffff;
    }
    a {
    text-decoration:none;
    }
    main > img {
    margin:0 auto;
    max-width:200px;
    margin-bottom:1em
    }
    main {
    max-width:480px;
    }
    .apps {
    display:grid;
    grid-template-columns:1fr 1fr ;
    gap:1em;
    margin-top:2em
    }
    .apps .single {
    display:grid;
    grid-template-columns:auto;
    justify-content:center;
    align-items:center;
    gap:1em;
    background:#00235e;
    padding:1em;
    border-radius:6px;
    color:#2ab7ff;
    transition:all 0.3s ease;
    }
    .apps .single:hover {
    background:#004e8f;
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(42,183,255,0.3);
    }
    .apps .single svg {
    width:2.5em
    }

    .apps .single .title {
    font-size:1
    }
    main > p {
    color:rgba(255,255,255,0.8);
    margin:1em 0 0 0;
    font-size:.875em
    }
    iframe {
    border-radius:12px;
    margin-top:1em;
    padding:.25em;
    background:#fff;
    width:calc(100% - .5em);
    height:640px;
    transform:scale(1)
    }
    .svgs {
    position:fixed;
    width:100%;
    top:20%;
    right:0%;
    z-index:-1
    }
    .svgs svg {                
    opacity:.15;
    position:absolute;
    right:-50%;
    width:100%;
    }
    .svgs svg path {
    fill:#2ab7ff;
    }
    .ozelbg {
    position:fixed;
    left:0;
    top:-20%;
    z-index:-1;
   
    }
    .ozelbg svg {
    width:100%;
    opacity:.15
    }
    .ozelbg svg path {
    fill:#2ab7ff;
    }
    footer {
    position:fixed;
    bottom:1em;
    left:calc(50% - 128px);
    }

    .popup{
        background-color: #00235e;
        width: 420px;
        padding: 30px 40px;
        position: absolute;
        transform: translate(-50%,-50%);
        left: 50%;
        top: 50%;
        border-radius: 8px;
        font-family: "Lexend",sans-serif;
        display: none; 
        text-align: center;
        color:#ffffff;
        border:1px solid #2ab7ff;
    }
    @media screen and (max-width: 800px) {
        .popup{
            width: 250px;
            left: 50%;
            top: 50%;
        }
    }

    .popup button{
        display: block;
        margin:  0 0 20px auto;
        background-color: transparent;
        font-size: 30px;
        color: #ffffff;
        background: red;
        border-radius: 100%;
        width: 40px;
        height: 40px;
        border: none;
        outline: none;
        cursor: pointer;
    }
    .popup h2{
      margin-top: -20px;
    }
    .popup p{
        font-size: 14px;
        text-align: justify;
        margin: 20px 0;
        line-height: 25px;
    }