* {
    cursor: url('/images/1.png'), auto;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    width: 100%;
}

body {
    background-color: lightsteelblue;
}

.container {
    margin: 1rem;
    width: 375px;
    max-width: 90vw;
    border: 1px dashed black;
    padding: 1.5rem;
    background-color: lightyellow;
}

@media only screen and (max-width: 30em) {
    .container {
        width: calc(100vw - 2rem);
        margin: 1rem auto;
}
}

h1, h2, h3 {
    margin: 1rem 0;
}

h1 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    vertical-align: baseline;
}

h1:hover {
    color: red;
    cursor: none;
}

h2 {
    font-size: 1.25rem;
    transition: 1s;
    text-align: right;
}

h2:hover {
    text-transform: uppercase;
    text-shadow: 0px 0px 5px rgba(255, 0, 0, 0.5);
    cursor: url('/montreal/images/4.png'), auto !important; 
}

h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

p {
    margin: 0 1rem 1rem 0em;
}

img {
    width: 100%;
    border: 1px solid black;
    filter: hue-rotate(210deg);
    transition: .5s;
}

img:hover {
    box-shadow: red 0px 0px 10px;
    filter: hue-rotate(0deg);
    cursor: url('/montreal/images/2.png'), auto;
}

#msg {
    border: 0px;
    height: 95px;
    width: auto;
    float: right;
    vertical-align: bottom;
    filter: none;
    transition: none;
}

#msg:hover {
    box-shadow: none;
    cursor: none;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: drop-shadow(red 0px 0px 1px);
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    cursor: url('/montreal/images/3.png'), auto !important; 
}

::selection {
    color: red;
}

hr {
    border-top: dotted 0px;
}
