@keyframes colors {
    0% {
        color: white;
    }
    50% {
        color: black;
    }
    100% {
        color: white;
    }
}
@keyframes shadowing {
    0% {
        box-shadow: 30px -10px 40px rgb(255, 190, 0), 20px 30px 60px red;
    }
    50% {
        box-shadow: 10px 20px 50px rgb(255, 190, 0), -10px 50px 70px red;
    }
    100% {
        box-shadow: 30px -10px 40px rgb(255, 190, 0), 20px 30px 60px red;
    }
}
@keyframes wave {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes wave3 {
    0% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(-10px);
    }
}
::-webkit-scrollbar{
    display: none;
}
body {
    display: flex;
    background:rgb(255, 241, 214);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
}
a {
    color: inherit; 
    text-decoration: none;
    transition: color linear 0.2s;
}
a:hover, a:active {
    color: white;
}
.arrow {
    position: absolute;
    top: 0;
    left: 0;
    margin: 50px;
    transition: filter ease-in-out 0.1s;
    clip-path: inset(0 8px 0 0);
}
.arrow:hover, .arrow:active {
    filter: invert(100%);
}
.social {
    position: absolute;
    text-align: right;
    font-size: 12px;
    right: 50px;
    top: 0;
    margin-top: 48px;
}
.contact {
    position: absolute;
    text-align: right;
    font-size: 12px;
    right: 50px;
    bottom: 0;
    margin-bottom: 50px;
    padding-bottom: 4px;
    border-bottom: 1px solid black;
    width: 100%;
    clip-path: inset(0 0 0 100px);
    z-index: 6;
}
.about {
    position: absolute;
    text-align: left;
    font-size: 12px;
    left: 50px;
    bottom: 50px;
    padding-bottom: 4px;
    z-index: 7;
}
.info {
    color: white;
    position: absolute;
    display: flex;
    margin: 0;
    padding: 0;
    background: black;
    outline: 1px dashed black;
    outline-offset: 5px;
    width: 270px;
    height: 390px;
    box-shadow: 30px -10px 40px rgb(255, 190, 0), 20px 30px 60px red;
    animation: wave ease-in-out infinite 2s, shadowing ease-in-out infinite 2s;
}
h1 {
    font-size: 24px;
    color: white;
    width: 65%;
    text-align: center;
    border-bottom: 1px dashed white;
    margin: auto;
    margin-top: 5px;
    padding-bottom: 10px;
}
h2 {
    font-size: 15px;
    color: white;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    animation: wave3 ease-in-out infinite 4s;
}
.first {
    font-size: 12px;
    margin: 10px;
    color: gray;
    width: 90%;
    padding-bottom: 10px;
    border-bottom: 1px dashed white;
}
.container {
    position: relative;
    width: 100%;
    margin: 10px;
    cursor: default;
}
.here {
    color: black;
    animation: colors ease-in-out infinite 1s;
}
.here:hover {
    animation: none;
    color: white;
    text-shadow: 0px 0px 5px white;
}
.last {
    font-size: 12px;
    margin: 10px;
    color: gray;
    width: 90%;
    padding-bottom: 10px;
    border-bottom: none;
}