* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #000;
    scroll-behavior: smooth;
}

.main {
background: radial-gradient(circle, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0) 70%), url('bg.jpg') no-repeat center center/cover;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}

.main h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.main h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.showBtn {
    padding: 10px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.showBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
}

.showBtn:hover {
    color: #000;
    background: #fff;
}

.showBtn:hover::before {
    left: 0;
}

.showBtn a {
    color: inherit;
    text-decoration: none;
}

.section {
    height: 100vh;
    padding: 50px 20px;
    background-color: #111;
    text-align: center;
}

.section h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #0dcaf0;
}

.api-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.api-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.api-card:hover {
    transform: translateY(-10px);
}

.api-card h3 {
    color: #0dcaf0;
    margin-bottom: 10px;
}

.api-card p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.api-card a {
    display: inline-block;
    padding: 10px 15px;
    background: #0dcaf0;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.api-card a:hover {
    background: #0bb4d4;
}

.top-button{
    width: 100%;
    position: absolute;
    top: 8px;
    display: flex;
    justify-content: space-evenly;
}
.top-button a{
    cursor: pointer;
    user-select: none;
    width: 105px;
    height: 35px;
    border: 1px solid white;
    border-radius: 3px;
    backdrop-filter: blur(8px);
    box-shadow: 0px 2px 20px white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.4s;
}
.top-button a:hover{
    background-color: white;
    color: black;
}
#contact-section a{
    color: rgb(174, 216, 255);
    text-decoration: none;
}
#contact-section, #about-section{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}