@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

body {
    background: #000;
    color: white;
    font-family: "Source Sans 3", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 85px;
    right: 60px;
}

h1 {
    font-weight: bolder;
    font-size: 44px;
}

.instruct {
    background-color: #1a2c3e;
    color: #80afe3;
    padding: 18px;
    border-radius: 8px;
    position: relative;
    bottom: 30px;
}

label {
    display: block;
    font-size: small;
    font-weight: 500;
    position: relative;
    bottom: 25px;

}

input,
select {
    background-color: #262730;
    color: ghostwhite;
    height: 25px;
    width: 700px;
    padding: 5px;
    border-radius: 8px;
    position: relative;
    bottom: 40px;
}

::placeholder {
    color: white;
}

.results {
    background-color: #143224;
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 15px;
    border-radius: 8px;
    position: relative;
    bottom: 20px;
    display: none;
}