body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.hello{
    background-color: #8191ec;
    background-image: url(../image/noise.png);
    width: 100%;
    height: 100%;
    z-index: -100;
    text-align: center;
}

.hello-tile{
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(144deg, rgba(146, 105, 255, 0.3) 0%, rgba(117, 198, 245, 0.3) 50%, rgba(135, 250, 174, 0.3) 100%);
    width: 300px;
    height: 150px;
    margin: auto;
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
    transition: all 0.2s ease;
    animation: hellotilerainbow 4s linear infinite;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 2px solid rgb(175, 175, 175); 
    box-sizing: border-box;
    border-radius: 30px;
}

@keyframes hellotilerainbow {
    0% {
        box-shadow: 0 3px 20px 1px rgba(204, 94, 255, 0.7);
    }
    14% {
        box-shadow: 0 3px 20px 1px rgba(255, 0, 0, 0.7);
    }
    28% {
        box-shadow: 0 3px 20px 1px rgba(255, 140, 0, 0.7);
    }
    42% {
        box-shadow: 0 3px 20px 1px rgba(255, 255, 0, 0.7);
    }
    57% {
        box-shadow: 0 3px 20px 1px rgba(0, 128, 0, 0.7);
    }
    71% {
        box-shadow: 0 3px 20px 1px rgba(0, 0, 255, 0.7);
    }
    85% {
        box-shadow: 0 3px 20px 1px rgba(75, 0, 130, 0.7);
    }
    100% {
        box-shadow: 0 3px 20px 1px rgba(204, 94, 255, 0.7);
    }
}

.down{
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    animation: down 2s ease-in-out infinite;
}

@keyframes down {
    0%, 100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
}

.about{
    background-color: rgb(200, 235, 249);
    width: 100%;
    text-align: center;
    margin-top: -22px;
}

.bh{
    padding-top: 20px;
}

.profile{
    background-color: rgba(255, 255, 255, 0);
    width: 350px;
    height: 200px;
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: all 0.2s ease;
    margin: 20px;
    border: 2px solid rgb(255, 255, 255, 0.3);
}

.profile:hover{
    transform: scale(1.1);
}

.skill{
    background-color: rgba(255, 255, 255, 0);
    width: 350px;
    height: 200px;
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: all 0.2s ease;
    margin: 20px;
    border: 2px solid rgb(255, 255, 255, 0.3);
}

.skill:hover{
    transform: scale(1.1);
}

.learns{
    background-color: rgba(255, 255, 255, 0);
    width: 350px;
    height: 150px;
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: all 0.2s ease;
    margin: 20px;
    border: 2px solid rgb(255, 255, 255, 0.3);
}

.learns:hover{
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

.noobs{
    background-color: rgba(255, 255, 255, 0);
    width: 350px;
    height: 200px;
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: all 0.2s ease;
    margin: 20px;
    border: 2px solid rgb(255, 255, 255, 0.3);
}

.noobs:hover{
    transform: scale(1.1);
}

.about-1{
    font-size: 25px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding-top: 25px;
}

.about-texts{
    text-align: left;
    margin: -151px 0 0 80px;
    line-height: 40px;
}

.notifications{
    display: flex;
    position: fixed;
    background-color: rgba(240, 248, 255, 0.3);
    box-shadow: 0 0 10px 10px rgba(72, 255, 0, 0.2);
    border: 2px solid rgb(255, 255, 255, 0.2);
    height: 50px;
    width: 200px;
    bottom: 50px;
    right: -100vh;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: all 1s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
    z-index: 999;
}

.notifications:hover{
    bottom: 60px;
}

.bgwave{
    position: fixed;
    bottom: -20vh;
    left:0;
    transition: all 2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
}

.notes{
    background-color: rgb(200, 240, 231);
    margin-top: -23px;
    text-align: center;
}

.note{
    background-color: rgb(255, 255, 255, 0.1);
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
    border: 2px solid rgb(255, 255, 255, 0.3);
    height: 50px;
    width: 300px;
    border-radius: 15px;
    transition: all 0.2s ease;
    margin: 15px;
    cursor: pointer;
}

.note:hover{
    transform: scale(1.1);
}

.note:active{
    transform: scale(0.9);
}

.notesh{
    font-size: 25px;
    margin-top: 5px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal {
    background-color: #a8cdc0;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.5);
    margin: 20px;
    max-width: 500px;
}

.close-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background-color: #bff3e2;
    box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transform: scale(2);
    width: 20px;
    border-radius: 5px;
    transition: all 0.5s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.close-btn:hover{
    transform: scale(2.5);
    box-shadow: 0 0 30px 5px rgba(255, 255, 255);
}

.close-btn:active{
    transform: scale(2);
}

.modallink{
    position: absolute;
    bottom: 40px;
    right: 100px;
    background-color: #bff3e2;
    box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transform: scale(2);
    width: 20px;
    border-radius: 5px;
    transition: all 0.5s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.modallink:hover{
    transform: scale(2.5);
    box-shadow: 0 0 30px 5px rgba(255, 255, 255);
}

.modallink:active{
    transform: scale(2);
}

.modalheadtext{
    font-size: 25px;
}

.made{
    background-color: rgb(196, 217, 221);
    margin-top: -25px;
    text-align: center;
}

.mades{
    background-color: rgb(255, 255, 255, 0.1);
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
    border: 2px solid rgb(255, 255, 255, 0.3);
    border-radius: 15px;
    width: 300px;
    height: 200px;
    margin: 20px;
    transition: all 0.5s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.mades:hover{
    transform: scale(1.1);
}

.mades:active{
    transform: scale(0.9);
}

.madeimg{
    height: 130px;
    width: 300px;
    border-radius: 15px;
    display:block;
    object-fit: cover;
}