html,* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    
html {
    height: 100%;
}

@font-face {
    font-family:OpenSansBold;
    src:url("./OpenSans-Bold.ttf");
}
    
body {
    background-color: #ebebed;
    height: 100%;
    font-family: OpenSansBold;
    background-color: #ebebed;
}

body::before {    
    content: "";
    background-image: url('../images/dotdev_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.7;
}
    
div {
    display: grid;
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

div > div {
    transform: translateY(-1000px);
}

.logo_animate {
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}

img{
    max-width: 100%;
    height: auto;
}
    
h1 {
    background-color: #4c4c4c;
    color: #ebebed;
    padding: 6px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    margin-top:-48vh;
}
