* {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;    
    overflow-x:hidden;
}

body {
    margin: 0;
    padding-top: 90px;
    padding-bottom: 60px;
    min-height: 100%;
    position: relative;
    overflow-x:hidden;
}

.main {
    position: relative;        
}

mark { 
  background-color: yellow;
  color: black;
}

.code {
    font-size: 10px;
    font-family:courier, "courier new", monospace;
    border: 1px solid #54b4eb;
}

.footer-privacy {
    color:white;
    position: absolute;
    text-align:center;
    padding: 5px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;    
}

.footer-privacy a {
    color: white;
}

.alert {
    transition: opacity 0.5s ease-out;
}

.content {
    overflow-x:hidden;
}

img {
    max-width: 100%;
    height: auto;
}