body {
    background-color: #0a0a0c;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    width: 100%;
    height: 100%;
    margin-left: 0;
    font-family: 'Outfit', sans-serif;

    overflow-x: hidden;
    text-decoration: none;
    color: white;
    cursor: default;
}

.list::-webkit-scrollbar { 
    width: 0 !important;
    display: none; 
  }

a {
    text-decoration: none;
    color: white;
}

hr {
    border: 1px solid #202631;
    background-color: #202631;
    width: 100%;
}

:root {
    --blue: #767dd2;
    --green: #7ed276;
    --sky-blue: #00b4fc;
    --light-green: #61e2c2;
    --light-pink: #E1306C;
    --light-red: #ff0000;
    --brown: #6F4E37;
    --grey: #bcbcbc;
}

.main {
    width: 50%;
    margin: auto;
}

.navbar {
    background-color: #14161c;
    border-radius: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 30px;
    height: 50px;
    width: 100%;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.navbar ul li a {
    transition: .2s;
    color: rgb(231, 230, 230);
    font-weight: 600;
}

.navbar ul li a:hover {
    color: rgb(172, 172, 172);
}

.bottom {
    border-radius: 10px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.general {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
    flex-direction: row;
    margin-bottom: 30px;
}

.right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}



.name {
    font-size: 130px;
    color: white;
    font-weight: 900;
}

.left-side {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin-top: -80px;
}

.left-side-text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    margin-top: -110px;
    margin-left:20px;
}

.status-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-size: 14px;
    color: #adadad;
}

.bd-count {
    position: relative;
    font-size: 14px;
    color: #adadad;
    margin-top: -20px;
    margin-left: -5px;
}

.bd-count h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.bd-count .cake {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

#status {
    font-size: 20px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 18px;
    height: 18px;
    transform: scale(1);    
    animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.8);
	}

	50% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(0.8);
	}
}

.links {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    width: 160px;
    border: 2px solid #202631;
    z-index: 10;
}

.link {
    transition: all .2s ease-in-out;
}

.link:hover {
    transform: rotate(15deg);
}

.tooltip,
.tooltip-content {
    transition: 0.4s;
}

.tooltip {
    opacity: 0;
    position: absolute;
    padding: 8px 15px;
    background-color: #202631;
    color: white;
    font-weight: 600;
    width: max-content;
    pointer-events: none;
    border-radius: 10px;
    margin-left: 10px;
}

.tooltip-top {
    margin-top: -80px;
    margin-left: -35px;
}

.tooltip-content:hover .tooltip-top {
    opacity: 1;
    margin-top: -80px;
}

.technologies-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.technologies {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    gap: 15px;
    border-radius: 10px;
    border: 2px solid #202631;
    flex-wrap: wrap;
}

.tech {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.project-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
}

.projects {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.project {
    border: 2px solid #202631;
    padding: 0px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 250px;
    height: 130px;
    transition: .3s;
}

.project h2 {
    font-size: 20px;
    margin-top: 0px;
}

.project h3 {
    margin-top: -10px;
    font-weight: normal;
    color: #adadad;
    font-size: 15px;
}

.project div span {
    width: 10px;
    height: 10px;
    border-radius: 50px;
}

.project div .red {
    background-color: rgb(255, 102, 102);
}

.project div .blue {
    background-color: rgb(102, 176, 255);
}

.project div .yellow {
    background-color: rgb(245, 255, 102);
}

.project div .green {
    background-color: var(--green);
}

.project div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.project:hover {
    border: 2px solid #414752;
    box-shadow: 0px 0px 10px 1px #202631;
}

@media screen and (max-width: 1100px) {
    .contact {
        flex-direction: column-reverse;
        width: 500px;
        justify-content: center;
        align-items: center;
    }
    .media-section {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 740px) {

    .links {
        margin-top: 0px;
        margin-left: 0px;
    }

    .name {
        font-size: 100px;
    }
    
    .left-side {
        margin-top: -40px;
        justify-content: center;
        align-items: center;
    }
    
    .left-side-text {
        margin-top: -80px;
        align-items: center;
    }

    .general {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .media-section {
        width: 350px;
    }
}

.ambient__visible {
    border-radius: 15px;
    width: 220px;
    height: 220px;
}

@media screen and (max-width: 500px) {
    .name {
        font-size: 100px;
    }
    
    .left-side {
        margin-top: -40px;
        justify-content: center;
        align-items: center;
    }
    
    .left-side-text {
        margin-top: -80px;
        align-items: center;
    }
}

@media screen and (max-width: 470px) {
    .bd-count h2 {
        flex-direction: column;
    }
}