h1 {
    border-radius: 15px 50px;
    background: steelblue;
    padding: 20px;
    text-align: center;
    width: auto;
    justify-items: center;
}

html {
    font-family: sans-serif;
    background: url("bartndr.png") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.row {
    display: flex;
}
  
.column {
    flex: 50%;
    background-color: #5EAFBA;
    flex-direction: column;
    width: fit-content;
}

iframe {
    padding-top:10px; 
    padding-bottom:10px;
    text-align: center;
    justify-content: center;
}

nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.Button {
    border-radius: 15px 50px;
    background: steelblue;
    padding: 20px;
    margin-left: 20px;
    text-align: center;
    width: auto;
    justify-items: center;
    list-style: none;
}

.icon {
    height: 80px;
    display: flex;
    flex-direction: column;
    float: right;
    clear: right;
    border-radius: 80px;
    transition: all 0.2s ease;
}

.icon:hover{
    border-radius: 100px;
    box-shadow: 10px 10px 10px;
}



.aside {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

footer {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

footer img{
    width: 128px;
    height: 128px;
    border-radius: 20px;
    margin: 10px;
}

.fixedButton{
    position: fixed;
    bottom: 0px;
    right: 0px; 
    padding: 20px;
}
.roundedFixedBtn{
  height: 60px;
  line-height: 80px;  
  width: 60px;  
  font-size: 2em;
  font-weight: bold;
  border-radius: 50%;
  background-color: #4CAF50;
  color: white;
  text-align: center;
  cursor: pointer;
}