body {
    text-align: center;
    background-color: rgb(206, 227, 247);
    font-family: 'Times New Roman', Times, serif;
}

/*To create a fixed header */
.fixed-header {
    position: fixed;
    background-color: rgb(134, 0, 114);
    color: #ffffff;
    height: 125px;
    width: 100%;
    
}

/*Padding image to be below header */
.image-padding {
    margin-top: 150px;
}

/* Styling inputs with type="text" and textareas */
input [type=text], textarea {
    width: 75%;
    padding: 12px;
    border: 1px;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 5px;
    resize: vertical;
}

/* For styling the submit button */
input [type=submit] {
    width: 50px;
    background-color: orange;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Adding background color and padding around the form */
.container {
    border-radius: 5px;
    background-color:rgb(206, 227, 247);
    padding: 20px;
}

a:link {
    color: white
}

.text-width{
    width: 75%;
}

footer {
    background-color: rgb(8, 12, 94);
    color: white;
    width: 100%;
    height: 200px;
}
