    body {
    background:rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    max-width: 600px;
    line-height: 25px;
    margin: 2rem ;
    }
    
    img{
    display: block;
    width: 450px;
    margin: auto;
    border-radius: 20px;

    }

    h1 {
        font-family: "Abel", sans-serif;
        font-weight: 900;
        font-style: normal;
        font-size: 44px;
        text-shadow: 2px 1px 2px black;
    }

    h2 {
        font-family: "Abel", sans-serif;
        font-weight: 800;
        font-style: normal;
        font-size: 36px;
    }

    h3 {
        font-family: "Abel", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 24px;
    }

    th {
        font-family: "Abel", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 22px;
    }

    p{
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
    }

    .btn {
        display: inline-block;
        padding: 5px 10px;
        background-color: rgb(0, 122, 204);
        color: white;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
    }

    .btn:hover {
        background-color: rgb(0, 90, 204);
    }

    .btn:active {
        background-color: rgb(0, 50, 204);
        cursor: progress;
    }

    ul {
        list-style-type: square;
        background-color: #f2f2f2;
        border-radius: 20px;
        padding: 15px 5px 15px 30px;
    }

    ul li {
        background-color: #dbdbdb;
        padding: 5px;
        margin-right: 30px;
        border-radius: 20px;
    }

    ol {
        list-style-type: lower-greek;
        background-color: #f2f2f2;
        border-radius: 20px;
        padding: 15px 5px 15px 30px;
    }

    input[type="text"] {
        width: 200px;
        padding: 5px;
        margin: 5px;
        border: 1px solid lightgray;
        border-radius: 2px;
        outline: none;

    }

    input[type="text"]:focus {
        border-radius: 6px;
        background-color:  #d4e9fa;
        border: 2px solid rgb(0, 122, 204);

    }

    input[type="submit"] {
        
        display: inline-block;
        padding: 5px 10px;
        background-color: rgb(0, 122, 204);
        border: none;
        color: white;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
    }

    input[type="submit"]:hover { 
        background-color: rgb(0, 90, 204);
        cursor: pointer;
    }

    textarea {
        resize: none;
        border: 1px solid lightgray;
    }

    textarea:focus {
        border-radius: 6px;
        background-color: #d4e9fa;
        border: 2px solid rgb(0, 122, 204);
    }

    select {
        width: 200px;
        padding: 5px;
        margin: 5px;
        border: 1px solid lightgray;
        border-radius: 2px;
        outline: none;
    }

    select:focus {
        border-radius: 6px;
        background-color: #d4e9fa;
        border: 2px solid rgb(0, 122, 204);
    }

    label {
        font-family: "Abel", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 22px;
    }

    label.radio {
        font-family: "Abel", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 18px;
    }

    fieldset {
        border: 1px solid lightgray;
        background-color: rgb(250, 250, 250);
        box-shadow: 0 2px 4px rgb(200, 200, 200);
    }

    legend {
        background-color: #dbdbdb;
        padding: 2px 10px;
        border-radius: 5px;
    }
