@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap');

* {
    font-family: 'VCR OSD Mono', sans-serif;
    color: white
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.wallpaper {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url(/wallpaper/wallpaper3.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.wallpaper2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url(/wallpaper/wallpaper\ 6.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.wallpaper3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url(/wallpaper/wallpaper3.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.wallpaper4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url(/wallpaper/wallpaper4.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.wallpaper5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url(/wallpaper/grimzy\ wallpaper.gif);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.wallpaper6 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url(/wallpaper/nett\ wallpaper.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.wallpaper7 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url(/wallpaper/wallpaper_for_subject.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.wallpaper8 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url(/wallpaper/fluffy_background.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.wallpaper9 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url(/wallpaper/Kusah\ wallpaper.gif);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

pre {
    color: #fff;
    overflow-x: hidden;
    overflow-y: hidden;
    border: none;
    font-size: 10px;
    
}
.social-buttons {

    z-index: 2;
}

.social-buttons {
    width: 100%;
    height: 100%;
    border-radius: 60%;
    overflow: hidden;
}
.social-buttons:hover {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 60%;
    background-color: #3d3d3db2;
}

.center-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.box-brrr {
    width: calc(47% - 10px);
    border-radius: 2px;
    background-color: transparent;
    padding: 20px;
    display: block;
    box-sizing: border-box;
    margin: 0 5px; 
}

.box-contain {
    display: flex;
    margin-top: 1em;
    width: 500px;
    text-align: center;
    justify-content: center;
}


.pfp {
    width: 110px;
    height: auto;
    border-radius: 50%;
    margin-left: 20px;
}

.text {
    margin-top: 30px;
	text-decoration: none;
	color: #dddddd;
    text-align: center;
	font-size: 12px;
}

.fade-in-image {
    animation: fadeIn 3s;
    -webkit-animation: fadeIn 3s;
    -moz-animation: fadeIn 3s;
    -o-animation: fadeIn 3s;
    -ms-animation: fadeIn 3s;
  }
  @keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1; }
  }
  
  @-moz-keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1; }
  }
  
  @-webkit-keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1;}
  }
  
  @-o-keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1; }
  }
  
  @-ms-keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1; }
  }

  
  @media (max-width: 600px) {
    html, body {
        overflow-x: hidden;
    }
    .intial-container {
        margin-top: 1200px;

    }
    .box-contain {
        flex-direction: column;
        align-items: center;
    }
    .box-brrr {
        max-width: 400px;
    }
    .box-brrr2 {
        max-width: 400px;
    }
    pre {
        font-size: 14px;
        overflow-y: auto;
    }
    .text {
        font-size: 8px;
        margin-bottom: 150px;
    }
}
.raindrop {
            position: absolute;
            background: rgba(255, 255, 255, 0.6);
            animation: rain-fall linear infinite;
        }

        @keyframes rain-fall {
            from {
                transform: translateY(-100%) rotate(0deg);
                opacity: 1;
            }

            to {
                transform: translateY(100vh);
                opacity: 0;
            }
        }

        .rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            pointer-events: none;
            z-index: 1;
        }