@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');

html, body {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 16px;
    background: #0a1213;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0px;
    margin: 0px;
}

img {
    height: 230px;
    width: 630px;
    object-fit: cover;
    border: 2px solid #edf7ea;
    margin-bottom: -3px;
}

nav {
    color: #edf7ea;
    background-color: #131714;
    display: flex;
    justify-content: center;
    gap: 12.5%;
    margin-top: 0px;
    text-align: center;
    border: 2px solid #edf7ea;
    border-top: none;
    padding-top: 15px;
    padding-bottom: 15px;
}

ul {
    list-style-type: none;
    margin-top: 8px;
    margin-bottom: 12px;
    padding: 0px;
}

ul li {
    margin-bottom: 2.5px;
}
.clock-box {
    position: relative;
    color: #edf7ea;
    background-color: #131714;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}

a {
    text-decoration: none;
    color: #eaeef7;
}
a:hover{
    color:#9fa7cd
}


input::placeholder {
    color: #edf7ea;
}

.profile {
    color: #edf7ea;
    margin-bottom: 20px;
    text-align: center;
}


.cherryrgb {
	color: #f35626;
	background-image: linear-gradient(92deg, #f35626, #feab3a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	animation: hue 10s infinite linear;
    text-align: center;
}

.cherryrgb_title {
	color: #f35626;
	background-image: linear-gradient(92deg, #f35626, #feab3a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; 
	background-clip: text; 
	color: transparent;
	animation: hue 10s infinite linear;
    font-size: 1.5em;
    padding-left: 30px;
    text-align: center;
}

@keyframes hue {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(-360deg);
  }
}   

