html{
    height: 100%;
}

body{
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-family: sans-serif;
    background-color: gray;
}

#title{
    text-align: center;
    font-size: 2em;
}

h1, p{
    margin: 0;
}

#title h1{
    background: white;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-radius: 10px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: black 0px 5px 0px;
}

#title > div{
    display: flex;
    justify-content: flex-end;
    right: 16px;
    position: relative;
    top: 0px;
}

#title p{
    color: white;
    background-color: red;
    display: inline;
    padding: 3px;
    padding-left: 6px;
    padding-right: 6px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: black 0px 4px 6px;
}

img{
    border-radius: 20px;
    max-height: 40%;
    width: auto;
}

#download{
    background-color: green;
    padding: 10px;
    border-radius: 100px;
    font-size: 1.5em;
    padding-left: 15px;
    padding-right: 15px;
    box-shadow: #005600 0px 5px 0px;
}

#download a{
    color: white;
    text-decoration: none;
}

#download:active{
    box-shadow: #005600 0px 0px 0px;
    position: relative;
    bottom: -5px;
}