@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; /* Modern font */
    font-weight: 500;

}



hr
{
    border-color: #333 ;
    width: 95%;
}
h1
{
    font-size: 3rem;
}

/* Normal state */
a {
    text-decoration: none; /* Removes the underline */
    color: #696969; /* Sets the text color */
    font-size: 16px; /* Sets the font size */
    font-family: Arial, sans-serif; /* Sets the font */
}

/* Hover state */
a:hover {
    color: #000; /* Changes the color on hover */
}



.brandfont 
{
    color: #BE3144 ;
}
.main {
    height: 100vh;
    
    overflow-y: scroll;
    z-index: 2;
    width: 100vw;
    overflow-x: hidden;
}

::-webkit-scrollbar
{
    background-color: #050a16;

}


.section
{
    
    width: 100vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.topbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    width: 100vw;
    position: relative;
}

.topbar img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    margin-left: 20px;
}

.topbar button
{
    width: 110px;
    height: 50px;
    border-radius: 500px;
    background-color: transparent;
    border:solid 2px #e4b2ab ;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: absolute;
    right: 0;
    margin-right: 45px;
    
}

.topbar button:hover
{
    background-color: #e4b2ab ;
    color: #f9fbff;
    font-size : 14px; ;
    
}
.horizontal 
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;

}

#main
{
    width: 550px;
    height: auto;
    margin: 100px;
    margin-left: 200px;
    animation: float 5s ease-in-out infinite;
}
.content
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    min-width: 30vw;
    height: 100%;
    line-height: 1.4;


}

.content h1
{
    padding: 15px;
}

.content h3 
{
    color: #333;
}

.content button
{
    width: 420px;
    height: 75px;
    border-radius: 15px;
    background-color: transparent;
    border:solid 2px #e4b2ab;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 30px;
    color: #e4b2ab;
    font-size: 1.25rem;
}

.content button:hover
{
    background-color: #e4b2ab;
    color: #f9fbff;
    font-size: 1.325rem;

    
}

.content img
{
    height: auto;
    width: 350px;
}


.reviews {
    display: flex;
    flex-direction: row; /* Keep children in a row */
    justify-content: center; 
    width: 80vw;
    padding: 30px;
}


.review {
    background-color: transparent;
    border-radius: 25px;
    border: solid 2px #333;
    width: 350px;
    height: auto;
    text-align: left;
    padding: 30px;
    margin: 0 20px;
    flex-shrink: 0; 
}




.country
{
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 15px;
    width: 200px;
    height: 250px;
}

.country img
{
    width: 100px;
    height: 100px;
    border: none;
}

.review h1
{
    font-size: 36px;
    padding-top:5px ;
    padding-bottom: 5px;
}
.review h2
{
    font-size: 24px;
    padding: 15px;
    padding-top:5px ;
    padding-bottom: 5px;
}
.review h4
{
    color: #696969;
    padding: 15px;
    padding-top:5px ;
    padding-bottom: 5px;
    
}



#footer
{
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footerLinks
{
    
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    text-align: left;
    align-items: flex-start;
    padding-top: 0;
}

.footerContent
{
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding-top: 0;
}


.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}


  
.footerContent h1
{
    font-size: 24px;
}
.darkText{
    color: #f5efe3;
}
.lightText
{
    color: #09122C;
}

.light
{
    background-color: #f9fbff;
    
}
.dark 
{
    background-color: #fdf5f4;
}

.left-text
{
    text-align: left;
}


#alternate-download
{
    width: 175px;
    height: 175px;
}




@media screen and (max-width: 800px) {

    .hide-on-mobile {
        display: none;
    }
    h1 {
        font-size: 32px;
    }

    h2 
    {
        font-size: 22px;
    }

    h3{
        font-size: 16px;
    }
    .review{
        width: 250px;
    }

    .content
    {
        width: 90%;
        
    }

    .content button
    {
        width: 60%;
        
    }

    #alternate-download 
    {
        width: 120px;
        height: 120px;
    }


    .horizontal
    {
        flex-direction: column;
        justify-content: center;
        width: 90%;
    }
    .reviews
    {
        width: 100vw;

    }
    .review
    {
        width: 100%;

    }

    .footerLinks
    {
        justify-content: left;
    }
    .footerContent
    {
        justify-content: left;
    }


  }

  @keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}


/* From Uiverse.io by hexday */ 
.card {
    background-color: rgba(217, 217, 217, 0.18);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 400px;
  }
  
  .terminal-header {
    background-color: #202425;
    padding: 10px 15px;
    display: flex;
    align-items: center;
  }
  
  .terminal-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .terminal-icon {
    color: #006adc;
  }
  
  .terminal-body {
    background-color: #202425;
    color: #ffffff;
    padding: 15px;
    font-family: "Courier New", Courier, monospace;
  }
  
  .command-line {
    display: flex;
    align-items: center;
  }
  
  .prompt {
    color: #ffffff;
    margin-right: 10px;
  }
  
