/*FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');

html {
    height:100%;
}    

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #eee;
    font-size: 18px;
    line-height: 1.6;
    background-color: #000;
}
* {
    border: 0 none;
    margin: 0;
    padding: 0;
}
a {
    color: #eee; 
    text-decoration: none; 
    -webkit-transition: all .3s; 
    transition: all .3s;
}
a:hover, a:focus {
    color: #f00; 
    text-decoration: none;
}
.content {
    width: 100%; 
    height: 100%; 
    text-align: center;
}
.content img {
    max-width: 1500px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.data {
    padding: 20px; 
}

