html {
    transform: scale(1.);
}

body {
    background-color: black;
    color: white;
    font-family: 'Poppins', sans-serif;
}

h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -125%);
}

p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

nav {
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    width: fit-content;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
  
nav a {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    background-color: rgb(255, 255, 255);
    transition: all .3s ease-in-out;
    transform: scale(1.2);
}

nav a:hover {
    background-color: lightgray;
}

.startbutton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-57%, 0%);
    display: fixed;
    padding: 20px 40px;
    margin: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    background-color: rgb(255, 255, 255);
    transition: all .3s ease-in-out;
}

.startbutton:hover {
    background-color: lightgray;
}

form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 25%);
}

input[type="text"] {
    padding-left: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    width: 300px;
    height: 40px;
    font-size: 15px;
    border-radius: 10px;
    border: none;
}

input[type="text"] {
    transition: background-color 0.5s ease-in-out;
}

input[type="text"]:focus {
    background-color: rgb(214, 214, 214);
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 46vh;
  }  

.startbutton1 {
    padding: 20px 40px;
    margin-left: 5px;
    margin-top: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    background-color: rgb(255, 255, 255);
    transition: all .3s ease-in-out;
}

.startbutton1:hover {
    background-color: lightgray;
}

footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background-color: #1d1d1d;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
