html, body {
    margin: 0;
    
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}

body {
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    color: #ffffff;
    background-color: #333;
    line-height: 1.5;
    background-image: url("abstract-wall-wave-architecture-black-background-black-background-presentation-portfolio-website_41204-2021.avif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
    background-attachment: fixed; 
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
}

.section {
    justify-content: center;
    align-items: center;
    text-align: center;
}

nav {
    display: flex;
    justify-content: right;
    background: #444;
    position: fixed;
    top: 0;
    z-index: 10;
    text-align: left;
    width: 100%;
    
}

nav a {
    color: #00b7ff;
    padding: 1rem;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: bold;
    font-size: 20px;
}

nav a:hover {
    background: #39FF14;
}

a {
    color: rgb(4, 179, 248);
    text-decoration: none;
}

.main-layout {
    display: flex;
    flex: 1;
    align-items: flex-start;
    padding: 2rem;
    padding-top: 50px;
    gap: 2rem;
}

.main-layout h2 {
    color: #00b7ff;
}

.content {
    flex: 1;
    padding: 20px;
}

#counter-section {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.counter {
    width: 100%;
}

.counter h2 {
    font-size: 60px;
    margin: 0;
    color: #ffd001;
    font-family: Arial, Helvetica, sans-serif;
}

.counter p {
    font-size: 25px;
    color: #ffd001;
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid #333;
}



