
body{
    background-color: transparent;
}

h1{
    color: crimson;
    font-size: 32px;
}

h2{
    color: steelblue;
}

input{
    margin: 16px;
}

button{
    background-color: slateblue;
    color: white;
    padding: 16px;

    border: none;
    border-radius: 80px;
    cursor: pointer;

    box-shadow: 0px 0px 4px black;

    text-transform: lowercase;
    text-decoration: none;
}

ul{
    list-style-type: circle;
}

td, th{
    border: 1px solid black;
    padding: 5px;
}

th{
    background-color: rgb(44, 44, 44);
    color: white;
}

table{
    border-collapse: collapse;
    font-family: 'Times New Roman', Times, serif;
    width: 300px;
}

img{
    animation: rodar 3s forwards;
}

@keyframes rodar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}