
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html{
    height: 100%;
    position: relative;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media screen and (max-width:768px){
    html, body{
        width: 100%;
        max-height: 100%;
        position: relative;
        overflow: auto;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
}

/*nav-bar*/
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
}

.logo{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
}

.logo li{
    list-style: none;
}

.logo a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: bold;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    margin: 5px;
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    color: black;
    text-decoration: none;
    letter-spacing: 2.5px;
    padding: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.4s;
    text-transform: uppercase;
}

.nav-links a:hover{
    color: lightpink;
}

.nav-socials{
    display:none !important;
    padding-top: 110px;
} 

.burger{
    display: none;
    cursor: pointer;
}

.burger div{
    width: 23px;
    height: 3px;
    background-color: black;
    margin: 5px;
    transition: all 0.3s ease;
}

/*nav bar mobile*/
@media screen and (max-width:1000px){
    body{
        overflow-x: hidden;
    }

    nav{
        padding: 0 20px;
        padding-top: 28px;
        padding-bottom: 15px;
    }

    .nav-links{
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        margin-left: auto;
        margin-right: auto;
        top: 9vh;
        gap: 30px;
        align-items: center;
        z-index:1;
        height: 100%;
        width: 100%;
        transform: translateX(100%); 
        transition: all 0.5s ease;  
    } 

    .nav-links li{
        opacity: 0;
    }
    
    .burger{
        display: block;
    }

    .nav-socials{
        display: flex !important;
    }

    .logo a{
        font-size: 18px;
    }
}

.nav-active{
    background-color: #fff;
    transform: translateX(0%);
   
}


@keyframes navlinkfade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

/*Click around image and links*/
content{
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 100vh;
    margin-bottom: 50px;
    
}

.container{
    max-width: 600px;
    position: relative;
    align-items: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

.container img{
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.container button {
    border: none;
    position:absolute;
    color: #fff;
    padding: 35px 35px;
    background-color: rgb(7, 7, 7);
    text-decoration: none;
    display: block;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    
}

.container button:hover{
    background: lightpink;
    border: 2px solid lightpink;
    cursor: pointer;
}

#beige {
    top: 3vh;   
    left: 15vh;
    transform: rotate(-30deg);
    opacity: 0;
}

#green {
    top: 22vh;   
    left: 21vh;
    transform: rotate(15deg);
    opacity: 0;
}

#blue {
    top: 39vh;   
    left: 15vh;
    transform: rotate(-30deg);
    opacity: 0;
}

#pink {
    top: 58vh;   
    left: 24vh;
    transform: rotate(15deg);
    opacity: 0;
}


@media only screen and (max-width: 1600px) {
    #beige {
        top: 2vh;   
        left: 14vh;
        transform: rotate(-30deg);
        opacity: 0;
    }
    
    #green {
        top: 20vh;   
        left: 20vh;
        transform: rotate(15deg);
        opacity: 0;
    }
    
    #blue {
        top: 38vh;   
        left: 13vh;
        transform: rotate(-30deg);
        opacity: 0;
    }
    
    #pink {
        top: 58vh;   
        left: 23vh;
        transform: rotate(15deg);
        opacity: 0;
    }
    
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    content{
        height: 100%;
    }
    .container img{
         width: auto; 
         height: 70vh;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 1500px) {
    
    .container img{
        width: auto; 
        height: 70vh;
   }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 1500px) {
    
    .container img{
        width: auto; 
        height: 75vh;
   }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 2400px) {
    
    .container img{
        width: auto; 
        height: 70vh;
   }
}


/*Clue link*/  
.clue {
    display: flex;
  }

  .clue a {
    display: flex;
    text-decoration: none;
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
  }
    
/*footer*/ 
footer{
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-color: transparent;
    margin-top: 100px;
    margin-bottom: 10px;
    bottom: 0 !important;
}

.content{
    text-align: center;
    margin:0 0 20px;
}

.footer{
    margin: 0 0 30px;
}

.footer-socials{
    list-style-type: none;
    display: flex;
    color: black;
    justify-content: center;
    font-size: 20px;
}

.footer-socials li{ 
    padding:0 5px;
}

.footer-socials a{
    color: black;
}

.footer-socials a:hover{
    color: hotpink;
}

.copyright{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.copyright p{
    font-size: 14px;
}


/*Info- main & sidebar*/
.content2-flow, .side-text {
    padding: 0 20px;
}
.content2-flow {
    max-width: 1300px;
    margin: auto;
    display: grid;
    height: 100%;
    margin-bottom: 60px;
    padding-top: 40px;
}

.grid1{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 95%;
}


.grid1 h1, p {
    align-items: center;
}

.pfp img{
    max-width: 100%;
    width: 100%;
    min-width: 0;
    min-height: 0;
}

.pfp {
    padding: 0 20px;
    flex: 1 1 32em;
}

.side-text {
    flex: 1 1 30em;
}

.side-text h1{
    margin-bottom: 20px;
    color: #101010;
    font-size: 30;
    word-spacing: 2px;
}

.side-text p{
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-size: 19px;
    color: #2b2b2b;
    word-spacing: 1px;
}

.button2{
    border: none;
    color: white;
    padding: 10px 10px;
    background-color: #414141;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.4s;
}

.button2:hover{
    background-color: #b7d0dc;
}

.button3 {
    border: none;
    color: white;
    padding: 15px 15px;
    background-color: #414141;
    text-decoration: none;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.4s;
    width: 210px;
}

.button3:hover {
    background-color: #b7d0dc;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 1600px) {
    .content2-flow {
        max-width: 1100px;
    }
}

@media only screen and (min-width: 2000px){
    .content2-flow {
        padding-top: 150px;
        margin-bottom: 70px;
    }
}

/*middle content*/
.block, .Plans, .col3 h3{
    padding: 20px;
}
.block{
    display: grid;
    justify-content: center;
    max-width: 1300px;
    margin: auto;
    height: 100%;
}

.Plans {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}

.col3 p{
    padding-bottom: 50px;
    line-height: 200%;
    font-size: 19px;
    color: #2b2b2b;
    word-spacing: 1px;
    letter-spacing: 1px;
}


/*lower content*/
.content1-flow, .col, h2{
    padding: 0 20px;
}

.content1-flow .col{
    padding-bottom: 30px;
}
.content1-flow {
    max-width: 1300px;
    margin: auto;
    display: grid;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
    
}

.grid2 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.grid2 > *{
    flex: 1 1 30em;
}

.pfp img {
    flex: 1 1;
}
.col h3 {
    padding-top: 30px;
    padding-bottom: 25px;
    font-size: 24px ;
    color: #101010;
    text-align: center;
}

.col p {
    line-height: 200%;
    font-size: 19px;
    color: #2b2b2b;
    word-spacing: 1px;
    text-align: center;
    letter-spacing: 1px;
}

.content1-flow h2 {
    margin-bottom: 30px;
    color: #101010;
    position: relative;
    text-transform: uppercase;
    font-size: 27px;
    text-align: center;
}

hr {
    width:96%;
    margin:0 auto;
}

@media only screen and (max-width: 1600px) {
    .block {
        max-width: 1100px;
       
    }
    
}

@media screen and (max-width:1000px){

    .block {
        padding: 0 15px;
    }

    .Plans {
        padding: 0;
    }

    .block h2{
        padding: 0;
        margin-bottom: 20px;
    }

    .content2-flow{
        height: auto;
    }

    .content1-flow, .col, h2{
        padding: 0 15px;
    }

    .content2-flow, .side-text {
        padding: 0 15px;
    }

    .content1-flow h2{
        margin-bottom: 8px;
    }

    .side-text h1{
    font-size: 26PX;
    line-height: 150%;
    margin-bottom: 20px;
    }

    .side-text p{
    margin-bottom: 20px;
    width: fit-content;
    font-size: calc(18px + (26 - 14) * ((100vw - 300px) / (1600 - 300)));
    }

    .button2 {
    padding: 12px 12px;
    
    }

    .side-text{
        padding:10px;
    }
    .pfp {
    padding: 10px;
    }

    #H{
        width: 87%;
        margin: 0 auto;
    }
    
    .col p{
        font-size: calc(18px + (26 - 14) * ((100vw - 300px) / (1600 - 300)));
        
    }
    .col3 p{
        font-size: calc(18px + (26 - 14) * ((100vw - 300px) / (1600 - 300)));
    }
}

@media only screen and (max-width: 1600px) {
    .content1-flow {
        max-width: 1100px;
       
    }
    
}
/*clue page*/

.content3-flow{
    display: flex;
    justify-content: center;
    height: 100vh;
}

.grid3{
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.grid3 img {
    flex: 0 1 auto;
    padding: 20px;
    max-width: 100%;
    
}

.grid3 h2 {
    padding: 5px;
}

.grid3 p {
    padding-bottom: 10px;
}