/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('motopic1_2000.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* .container {
    background-color: rgba(34, 34, 34, 0.8);
    color: #fff;
    padding: 40px 60px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
} */

/* .container {
    background-color: rgba(255, 255, 255, 0.8);
    color: #222;
    padding: 40px 60px;
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} */

.container {
    background-color: rgba(0, 0, 0, 0.6); /* Change the background color to dark with transparency */
    color: #fff; /* Change the text color to white */
    padding: 40px 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#typed-text {
    font-size: 10vw; /* Increase the font size */
    margin-bottom: 10px;
}

.text-cursor {
    display: inline-block; /* Change to inline-block for the cursor to be on the same line */
    width: 0.1vw;
    height: 7.5vw;
    background-color: #fff;
    animation: blink 1s infinite;
}



.icon-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
/* 
.icon-link {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.icon-link:hover {
    color: #ccc;
} */

.icon-link {
    color: #fff; /* Change the icon color to white */
    font-size: 32px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.icon-link:hover {
    color: #5B86E5; /* Change the hover color to match the background gradient */
    transform: translateY(-5px); /* Add a subtle lift effect on hover */
}



@keyframes blink {
    50% {
        opacity: 0;
    }
}
