@import url('https://fonts.googleapis.com/css2?family=Arimo&family=Lobster&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arimo', sans-serif;
}

body, html {
    display: block;
}

.thankyou h2 {
    margin: 30px;
    text-align: center;
    color: white;
    font-size: 48px;
}

.thankyou p {
    color: white;
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
}

form {
    margin-bottom: 20px;
}

#contactus {
    margin: 50px 50px 0px 50px;
    text-align: center;
    color: #f5f5f5;
    margin-bottom: 0px;
}

#contactus h2 {
    font-size: 48px;
}

#contactus p {
    line-height: 100px;
}

#contactus a, #contactus a:visited, #contactus a:hover {
    color: #39baff;
}

#formcomment {
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
}

#required {
    color: red;
}

label {
    color: white;
}

input[type=text], input[type=email], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #39baff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.container {
    display: block;
    border-radius: 5px;
    padding: 20px;
}