@import url(reset.css);

h1 {
    margin: auto;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #e5e5e5;
    font-size: 40px;
}
h2 {
    margin: auto;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #e5e5e5;
    font-size: 30px;
}
p {
    margin: auto;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #e5e5e5;
    font-size: 20px;
}
body {
    background-color: #353232;
    margin: 0;
    padding: 0;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 3%;
    position: relative; /* establish containing block for absolutely positioned img */
}
.howToUse {
    margin: auto;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #e5e5e5;
    font-size: 20px;
    width: 50%;
    margin-bottom: 3%;
}
.purpose {
    margin: auto;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #e5e5e5;
    font-size: 20px;
    width: 50%;
    margin-bottom: 3%;
}
.title {
    margin: 0;
    text-align: left;
}

.logo img {
    display: block;
    width: 128px;
    height: auto;
    position: absolute;
    top: 12px;
    left: 12px;
}

.controls input[type="text"] {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    color: #e5e5e5;
}

.controls button {
    padding: 8px 12px;
    margin-left: 8px;
    border-radius: 6px;
    border: none;
    background: #4a90e2;
    color: white;
    cursor: pointer;
}

.controls button:hover {
    background: #357ABD;
}