body{
    background-color: black;
    color: white;
    font-family: 'Montserrat', sans-serif;

    width: 100%;
    padding: 0;
    margin: 0;
}

html, body {
    overscroll-behavior: none;
}

.out_container{
    width: 100%;
    padding-top: 30px;
}

.in_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.topline{
    width: 70%;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
button:hover{
    cursor: pointer;
}
.title{
    font-size: 30px;
    font-weight: bold;
    border: none;
    background: transparent;
    color:white;
    transition: 0.4s;
}
.title:hover{
    scale: 120%;
}

.menu button{
    margin-left: 10px;
    border: 3px solid white;
    padding: 10px;
    border-radius: 15px;
    background-color: white;
    text-decoration: none;
    color: black;
    transition-duration: 0.4s;
    transition: 0.4s;
    font-size: 16px;
}

.menu button:hover{
    background-color: #222222;
    border: 3px solid #222222;
    color: white;
    scale: 110%;
}

.outbox{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.motto{
    padding-top: 50px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;


}
.coming_soon{
    margin: auto;
    text-align: center;
    margin-top: 14px;
}
.apppics{
    margin-top: 30px;
}



#content {
    transition: opacity 0.5s ease;
    opacity: 1;
}
#content.fade-out {
    opacity: 0;
}

footer{
    font-size: 15px;
    margin: auto;
    margin-top: 280px;
    color: rgba(255, 255, 255, 0.47);
    display: flex;
    width: 400px;
    justify-content: space-around;
}
footer a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.47);

}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.aboutcontainer{
    color: white;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    width: 80%;

}
.about_paragraph{
    margin-bottom: 20px;
    font-weight: bold;
    text-align: justify;
}

.about_date{
    font-size: 14px;
    font-weight: bold;
    color: grey;
    text-align: right;
}


.menu_title{
    margin-bottom: 30px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 25px;}
.menu_title *{
    transition: opacity 0.5s ease-in-out;


}

#menu_title{
    display: flex;
}

.phone-container {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
}
.phone-frame {
    width: 100%;
    display: block;
}
.screen {
    position: absolute;
    top: 16px;    /* keret belső margója */
    left: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    overflow: hidden;
}
.screen-img {
    position: absolute;
    top: 0;
    left: 0;
    /* induló pozíció */
}

#screen-img-right{
    margin-top: 160px;
    transition: opacity 0.2s ease-in-out;

}
.phone_bottom_layer{
    width: 70%;
    height: 1px;
    border-top: 1px solid grey;

}
.screen-img{
    width: 250px;
    margin-left: 10px;
    margin-top: 90px;

}
/* Ensure phone-container stays centered when pinned by ScrollTrigger */
.phone-container {
    margin: 0 auto;
    height: 463px;
}
/* Center the pinned placeholder wrapper added by GSAP */
.pin-spacer {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;

}

.sticky_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}
.pin-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}




.bottom_download{

    border: none;
    margin-top: 30px;
    background: transparent;
}

.app_store_svg{
    background: transparent;
    width: 200px;
}

@media only screen and (max-width: 800px) {
    .topline{
        width: 100%;
        z-index: auto;
        display: flex;
        flex-direction: column;
    }
    .outbox{
        width: 100%;
        z-index: auto;
    }
    .menu{
        margin-top: 15px;
    }
    .title{
        font-size: 40px;
    }
    .menu button:hover{
        margin-left: 10px;
        border: 3px solid white;
        padding: 10px;
        border-radius: 15px;
        background-color: white;
        text-decoration: none;
        color: black;
        transition-duration: 0.4s;
        transition: 0.4s;
        font-size: 16px;
    }
    .motto{
        font-size: 20px;
        width: 80%;
        text-align: center;
        padding: 10px;
    }
    .coming_soon{
        margin-top: 40px;
    }
    .phone_bottom_layer{
        width: 90%;
    }
    .pin-wrapper {

    }
    footer{
        margin-top: 20px;
        width: 70%;
    }
    .bottom_download{
        display: none;
        position: absolute;
    }
    .sticky_container{
        margin-bottom: 100px;
    }
}

