body{
    background-color: black;
}

h1{
    color: white;
    text-align: center;
    font-size: 3em;
    opacity: 0.8;
}

.textbox{
    font-family: 'Caveat', 'Cursive';
    border-style: solid;
    border-color: gray;
    padding: 10px;
    text-align: center;
    opacity: 0.8;
}

.textlink{
    color: white;
}

.textlink:hover{
    color: lightcoral;
}

p1{
    color: white;
    font-size: 25px;
    line-height: 45px;
}

.navigation{
    text-align: center;
    padding: 1em;
}

button{
    background-color: black;
    border-color: white;
    border-style: solid;
    opacity: 0.8;
}

a{
    font-family: 'Caveat', cursive;
    text-decoration: none;
    color: white;
    font-size: 25px;
    opacity: 0.0;
    transition: opacity 2s ease-in-out;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    
}

a:hover{
    opacity: 1.0;
    transition: opacity 3s;
}