/* write css code here */
@import url(https://googleapis.com/css?family=Source+Code+Pro:200,300,400,500,500,700,900);

h1 {
    /* color: purple; */
    font-weight: 200;
    font-size: 50px;
    text-transform: uppercase;
    border-bottom: 5px solid green;
}

body {
    background-color: #E0FFFF;
    color: #2E1263;
    font-family: "Source Code Pro";
    font-weight: 200;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
}
button {
    width: 200px;
    margin: 10px auto 0;
    padding: 10px 10px;
    background-color: #f69680;
    font-size: 14px;
    text-align: center;
    border: 1px solid #2E1263;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
}
button:hover {
    transition: 0.3s;
    background-color: #2E1263;
    color: #F69680;
    text-decoration: underline;
}
