* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(249, 238, 248);
}

nav {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    width: 100%;
    position: fixed;
    z-index: 1;
    padding: 10px 120px;

}

nav div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

nav div a {
    text-decoration: none;
    color: black;
    white-space: nowrap;
    transition: all .3s linear
}

nav div a:hover {
    color: rgb(86, 86, 244);
    transform: translateY(-3px) scale(1.1);


}

header {
    height: 80vh;
    background-color: rgb(242, 182, 155);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow-Y: hidden;

}

header div {
    display: flex;
    flex-direction: column;
    text-align: center;
}

header img {
    height: 80vh;
    padding-top: 55px;
}

header div h1 {
    opacity: 0;
    color: whitesmoke;
    animation: headerh1 3s ease 1s forwards;

}

@keyframes headerh1 {
    100% {
        color: black;
        opacity: 1;
    }
}

header div p {
    opacity: 0;
    color: whitesmoke;
    animation: headerp 2s ease 3s forwards;
}

@keyframes headerp {
    100% {
        color: black;
        opacity: 1;
    }
}

.sep {
    height: 5px;
    background-color: black;
}

.examplepics {
    margin: 60px 0px;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    overflow: auto;
}

.examplepics img {
    height: 170px;
}

main {
    margin: 80px 10vw;
    padding: 140px 30px;
    height: auto;
    border: 2px solid rgb(196, 193, 193);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.categories {
    background-color: bisque;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 19px;
    padding: 140px 1px;

}

.categories div {
    display: flex;
    gap: 15px;
}

.categories div a {
    text-decoration: none;
    color: rgb(62, 44, 226);
    transition: all .3s linear;
}

.categories div a:hover {
    color: rgb(239, 22, 87);
    transform: translateY(-1px) scale(1.1);
}

footer {
    background-color: black;
    height: 500px;
    padding: 26px 0px 5px 27px;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

footer .links {
    display: flex;
    gap: 17px;
}

footer .links a {
    transition: all .3s linear;
}

footer .links a:hover {
    transform: translateY(-2px) scale(1.15);
}

footer div img {
    height: 20px;
}

@media only screen and (max-width:740px){
    nav{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 38px 0px;
    }
    header{
        height: 60vh;
        display: flex;
        gap: 0px;
        overflow: hidden;
    }
    header div:first-child{
        transform: translateX(50px) translateY(-12px);
    }
    header img{
        height: 60vh;
        padding-top:90px ;
    }
}