* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: mediumseagreen
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}   

.container h1 {
    font-size: 3rem;
    font-weight: 100;;
    color: white;
    margin-bottom: 20px;
}

.container input {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
}

.container button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: mediumseagreen;
    font-weight: bold;
    cursor: pointer;
}   

.container .short {
    padding: 5px 10px;
    font-size: 18px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
 }

 .container .short a {
    text-decoration: none;
    padding: 5px 10px;
    font-size: 18px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
 }