@font-face {
    font-family: zrnic;
    src: url('zrnic.otf');
}

@font-face {
    font-family: CAT;
    src: url('CAT-North-Licht.ttf');
}

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    position: relative;
}
html{
    scroll-behavior: smooth;
}
a:active{
    background:lightgray;
}
a{
    text-decoration: none;
}
a,
a:visited{
    color:blue;
}
#page-wrapper{
    position: relative;
    width: 100%;
    background:#AEBBFF;
}
#content-wrapper{
    max-width:1600px;
    background:#AEBBFF;
    position: relative;
    margin: 0 auto;
}
#logo-wrapper{
    text-align: center;
    position: absolute;
    font-size: 250px;
    width:100%;
    height:100vh;
    height:100svh;
    background: white;
    display: grid;
    place-content: center;
    animation: hide-logo 2s linear 7s 1 forwards;
    z-index: 200;
}

#logo{
    position:relative;
    padding-top: 25px;
}

#asterisk{
    font-family: zrnic;
    color:blue;
    position: relative;
}

#i{
    display:inline-block;
    position:relative;
    bottom:15px;
    transform: scaleY(0.75);
    transform-origin: bottom;
}

#spinning{
    color:red;
    position:absolute;
    right:253px;
    top:-20px;
    animation: spin 20s linear infinite;
}

#software{
    color: black;
    font-size: 120px;
    position:relative;
    bottom:60px;
    font-family: CAT;
    font-weight: 100;
}

#url{
    font-size: 40px;
    font-family: sans-serif;
    position: relative;
    bottom:60px;
    color:#666;
}

#copy{
    font-size: 10px;
    position:absolute;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
}

.spoke{
    height:100px;
    width:15px;
    border-radius: 25px;
    background:red;
}

#spoke2{
    transform:rotate(60deg)
}

#spoke3{
    transform:rotate(60deg)
}

#progress-bar{
    width:300px;
    height:50px;
    border:1px solid black;
    margin:0 auto;
    /* border-radius: 50px; */
    position:relative;
    overflow: hidden;
}

#progress{
    background:grey;
    width:300px;
    height:50px;
    /* border-radius: 50px; */
    position:relative;
    transform: translateX(-101%);
    animation: loading 5s ease-in-out 2s forwards;
}

#loading{
    margin-top: 10px;
    font-size: 30px;
}

main{
    position:relative;
    top:100vh;
    animation: show-main 2s linear 7s forwards;
    padding: 0 10px;
    max-width: 100%;
}
nav{
    font-family: zrnic;
    position: fixed;
    max-width:1600px;
    width:100%;
    top:0;
    padding:5px 0;
    background:#AEBBFF;
    z-index: 100;
}
nav ul{
    display:flex;
    justify-content: space-around;
    list-style-type: none;
}
@keyframes loading {
    from{
        transform: translateX(-101%);
    }to{
        transform: translateX(0);
    }
}
@keyframes spin{
    from{
        transform: rotate(0deg);
    }to{
        transform: rotate(360deg);
    }
}
@keyframes hide-logo{
    from{
        top:0;
    }to{
        top:-100svh;
        top:-100vh;
    }
}
@keyframes show-main{
    from{
        top:100vh;
    }to{
        top:0;
    }
}
@media (max-width:800px){
   #logo{
    zoom:0.75
   }
}
    
@media (max-width:600px){
   #logo{
    zoom:0.5
   }
}
    
@media (max-width:400px){
   #logo{
    zoom:0.25
   }
}
p{
    margin-bottom: 20px;
    width: 40ch;
}
details{
    text-align: left;
}


p, summary,details{
    font-size: 25px;
}
summary{
    cursor: pointer;
}
details{
    width:30ch;
}
#contact-form{
    padding-top:50px;
    display: flex;
    width: 100%;
    min-height: 100vh;
    justify-content: space-around;
    align-items: center;
}
#contact-form img{
    max-width:40%;
    max-height: 600px;
}
form{
    width:300px;
    background:lightgrey;
    /* margin:0 auto 50px; */
    padding:10px;
    border-radius: 10px;
    border: 1px solid black;
}
input[type='submit']{
    padding: 10px 20px;
    border-radius:10px;
    cursor:pointer;
    background:blue;
    color:white;
}
textarea{
    width:100%;
    height:150px;
    padding:2px;
}
h1{
    text-align: center;
    font-family: zrnic;
    color:blue;
}
input,textarea{
    font-size: 16px;
    width:100%;
}
#home{
    padding-top: 50px;
    display: flex;
    gap:50px;
    width:100%;
    align-items: center;
    min-height: 100vh;
    justify-content: space-around;
}
#home img{
    max-width:25%;
    max-height: 500px;
}

#pricing{
    padding-top: 50px;
    display: flex;
    width:100%;
    align-items: center;
    justify-content: space-around;
    min-height: 100vh;
}
#pricing img{
    max-width:50%;
    max-height: 600px;
}
img{
    max-width: 100%;
}
#faqs{
    padding-top: 50px;
    min-height: 100vh;
    display: flex;
    width:100%;
    justify-content: space-around;
    align-items: center;
    gap:50px;
}
#faqs img{
    max-width:45%;
    max-height: 75vh;
}

#about{
    display: flex;
    width:100%;
    min-height: 100vh;
    align-items: center;
    justify-content: space-around;
}
#about img{
    max-height: 60vh;
    max-width: 50%;
}
footer{
    text-align: center;
    font-size: 11px;
    padding-top: 20px;
}

.photo{
    border-radius: 20px;
}
.red-underline{
    border-bottom: 1px solid red;
    padding-bottom: 5px;
}
nav li{
    border: 1px solid black;
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
}
nav li:hover{
    background:lightgrey;
}








@media(max-width:1215px){
    #pricing{
        flex-direction: column-reverse;
        align-items: center;
    }
}
@media(max-width:975px){
    #pricing img{
        max-width: 75%;
    }
}
@media(max-width:665px){
    #pricing p{
        width: 30ch;
    }
}
@media(max-width:500px){
    #pricing p{
        width: 20ch;
    }
}

@media(max-width:1215px){
    #about{
        flex-direction: column;
        align-items: center;
    }
    #about img{
        max-width: 75%;
    }
}
@media(max-width:690px){
    #about p{
        width:35ch;
    }
}
@media(max-width:560px){
    #about p{
        width:30ch;
    }
}
@media(max-width:500px){
    #about p{
        width:20ch;
    }
}
@media(max-width:1340px){
    #home{
        flex-direction: column;
    }
    #home img{
        max-width: 50%;
    }
}
@media(max-width:1000px){
    #home img{
        max-width: 75%;
    }
}
@media(max-width:650px){
    #home p{
        width:30ch;
    }
}
@media(max-width:500px){
    #home p{
        width:20ch;
    }
}

@media (max-width:980px){
    #faqs {
        flex-direction: column;
    }
    #faqs img{
        max-width: 75%;
    }
}
@media(max-width:500px){
    #faqs h1{
        font-size:28px;
    }
    details{
        width:25ch;
    }
}
@media(max-width:1150px){
    #faqs{
        flex-direction: column;
    }
}
@media(max-width:850px){
    #contact-form{
        flex-direction: column-reverse;
        gap:20px;
    }
    #contact-form img{
        max-width: 75%;
    }
}