body {
    padding: 0;
    margin: 0;
    background-color: rgb(0, 0, 0);
    font-family: sketchy;
    width: 100%;
    height: 100vh;
    font-size: 1.8em;
    color: white;
}

.imgb{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -10;
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 1s;
    animation-fill-mode :forwards;
}

.toth{
    width: 100%;
    position: absolute;
}

#link{
    opacity: 1;
    z-index: 1000;
    cursor: pointer;
    transition: 5s;
}

#link2{
    opacity: 0;
    z-index: 20;
    cursor: pointer;
}

#link3{
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}

.lr {
    color: red;
    text-decoration: none;
}

.tot{
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: -1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

#img1{
    margin-left: 15%;
    position: absolute;
    width: 400px;
    opacity: 0;
}

#img2{
    margin-left: 65%;
    position: absolute;
    width: 400px;
    opacity: 0;
}

.p1 {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 4s;
}

.p2 {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p3 {
    position: absolute;
    margin: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadein{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
