@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,700;0,900;1,900&display=swap');
@import url('/style/animations.css');
@import url('/style/likes.css');
*{
    scroll-behavior: smooth;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-snap-type: y mandatory;
}
body{
    scrollbar-width: 5px;
    scrollbar-track-color: pink;
    width: 100vw;
}
.intro-div{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    overflow: hidden;
    background-color: #DE3163;
}
.intro-div h1{
    z-index: 2;
    width: 100%;
    align-self: center;
    animation-duration: view();
    animation: slide-down .3s;
    color: white;
    font-size: clamp(80px,11vw,300px);
    font-weight: 800;
    line-height: 100%;
    -webkit-text-stroke-width: clamp(1px,.3vw,10px);
    -webkit-text-fill-color: transparent;
    transition:.3s;
    text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.304);
}
.name-div{
    z-index: 2;
    text-align: center;
    width: 50%;
    margin: 1rem;
}
.intro-message-div{
    z-index: 2;
    animation: slide-up 1s ease-in;
    width: 50%;
    color: white;
    font-size: clamp(14px,1.2vw,20px);
    padding: 4% 2%;
    background: rgba(155, 121, 121, 0.436);
    backdrop-filter: saturate(180%) blur(10px);
}
.intro-message-div p{
    text-align: justify;
}
.loves-div{
    height: 100vh;
    background-color: white;
    scroll-snap-align: start;
}
.photos-div{
    height: 100vh;
    background-color: white;
    scroll-snap-align: start;
    padding: 0 2% 2% 2%;
    overflow-y: scroll;
}
.photos-div::-webkit-scrollbar{
    width: 0;
}
.photos-div h1{
    color: #DE3163;
    font-weight: 700;
    font-size: clamp(40px,5vw,100px);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
.photo-container{
    border-radius: 1%;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 2%;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}
.photo-container::-webkit-scrollbar{
    width: 0;
}
.photo-container img {
    border-radius: 2%;
    width: 100%;
}