/* styles.css */
body {
    background-image: url('bgkeyboard.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Play', sans-serif;
 /* Replace 'Font-Name' with the actual font name */
    color: #FFFFFF; /* This is white, replace with the actual color code if different */
}
.title {
    font-size: 50px; /* Adjust font-size as needed */
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.min-title {
    font-size: 22px; /* Adjust font-size as needed */
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* Continue with other styles */
.container {
    text-align: center;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 50%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.container h1 {
    font-size: 52px; /* Adjust as needed */
}

.container h2 {
    font-size: 36px; /* Adjust as needed */
}
a:visited {
    color: white;
}