/* 
    Created on : May 24, 2024, 6:53:51 PM
    Author     : lisset ripoll
*/
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');

body {
    margin: 0;
    padding: 0;
    background: #000;
    font-size: 16px; /* Adjust font size for mobile */
}

#navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.2rem; /* Adjust font size for mobile */
    background: black;
    z-index: 1000;
    padding: 10px; /* Increase padding for better touch targets */
}

#navbar a {
    padding: 5px; 
    text-decoration: none;
    background: black;
    color: lightsteelblue;
    font-size: 1rem; /* Adjust font size for mobile */
    margin: 0.5rem;
    display: inline-block;
}

section {
    background: black;
    height: calc(100vh - 70px); /* Adjust height for navbar */
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

@font-face {
    font-family: 'Sacramento';
    src: url('fonts/Sacramento.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    src: url('fonts/StyleScript');
}  

#intro h1 {
    font-family: 'Sacramento', cursive, 'StyleScript';
    color: white;
    text-shadow: 2px 6px 6px blue;
    font-size: 10vw; /* Adjust font size for mobile */
    font-style: italic;
    margin: 0;
}

#intro h2 {
    background: black;
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
    font-family: 'Futura', "Reddit Mono", monospace;
    font-size: 2vw; /* Adjust font size for mobile */
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1.2;
    padding: 5px;
}

#enter_btn{
    width: 100%; /* Adjust button width for mobile */
    height: 40px; /* Adjust button height for mobile */
    color: white;
    background: none;
    border-radius: 20px; /* Adjust border radius for mobile */
    font-size: 1rem; /* Adjust font size for mobile */
}

.logos {
    height: 30px; /* Adjust logo size for mobile */
    width: 30px; /* Adjust logo size for mobile */
}

/* Media query for screens smaller than 600px */
@media screen and (max-width: 700px) {
    #navbar {
        font-size: 1rem; /* Adjust font size for smaller screens */
        height: 60vw;
    }

    #navbar a {
        font-size: 0.9rem; /* Adjust font size for smaller screens */
    }
    section{
        margin-top: 0vw;
    }
    #intro h1 {
        font-size: 10vw; /* Adjust font size for smaller screens */
    }
    
    #intro h2 {
    color: white;
    font-family: "Futura", "Reddit Mono", monospace;;
    font-size: 4vw; /* Adjust font size for mobile */
    font-style: normal;
    font-variant: normal;
    padding: 5px;
    }
    .logos {
    height: 50px; /* Adjust logo size for mobile */
    width: 50px; /* Adjust logo size for mobile */
}
}

