body {
    background-color: black;
    padding: 10px;
    margin: 0px;
}

h1 {
    color: white;
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT',  'Trebuchet MS', sans-serif;
}

h3 {
    color: white;
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT',  'Trebuchet MS', sans-serif;
}

p {
    color: white;
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT',  'Trebuchet MS', sans-serif;
}

a {
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT',  'Trebuchet MS', sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: color 1s;
}

a:hover {
    color: gray;
}

input {
    background-color: black;
    border: 1px solid white;
    color: white;
    padding: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 1s;
}

input:focus {
    border-color: gray;
}
    
button {
    background-color: white;
    border: 1px solid white;
    color: black;
    font-size: 16px;
    padding: 5px;
    cursor: pointer;
    outline: none;
    transition: background-color 1s, border-color 1s; /* Smooth transition */
}

button:hover {
    border-color: gray;
}
















