@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");

html {
    scroll-snap-type: y mandatory;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    background-color: #fcf8f5;
}

.ajanlatok{
    align-items: center;
    justify-content: center;
    text-align: center;
}

section {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

section img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.logo{
    position: absolute;
    top: -2%;
    margin: 0;
    padding: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
    align-self: center;
    align-items: center;

}

@media (min-width:320px)  {
    img {
        scale: 0.90;
    }
}

@media (min-width:1920px)  {
    section img{
        width: 33%;
        height: 100%;
    }
    img {
        scale: 0.90;
    }
    .logo{
        width: 10%;
    }
}

