@import url("fonts/poppins/style.css");
@import url("fonts/just-sunday/style.css");
@import url("fonts/cartoons-123/style.css");

body, html {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Poppins Light";
    letter-spacing: 0.5px;
}

h1{
    font-family: "Cartoons 123 Regular";
    font-weight: lighter;
    font-size: 12vw;
    text-align: center;
    color: #fff;
    margin-top: 0.25em;
    white-space: nowrap;
}
@media only screen and (min-width: 555px) {
        h1 {
                font-size: 66px; /* 555px * 1% * 12vw = 99,9px */
        }
}
@media only screen and (min-width: 957px) {
        h1 {
                font-size: 7vw; /* 957px * 1% * 7vw = 67px */
        }
}

.bg {
    background-image: url("img/background.jpg");
    height: 100%; 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 5%;
}

.overlay{
    background-color: rgba(0,160,233,1);
    margin: 0 ;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.centered{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
