* {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    scroll-behavior: smooth;
}

a {
    color: #ffffff;
    text-decoration: none;
}

.iden{
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    border: 2px solid #ffffff99;
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
    background-color: #111111;
    cursor: pointer;
    transition: all 0.3s ease;
}

.iden:hover {
    background-color: #151515;
    border-color: #ffffff;
    transform: translateY(-5px);
}

h1 {
    font-size: 2.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h2 {
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 10px;
    margin-top: 20px;
    border: 2px solid #ffffff99;
    width: 80vw;

    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.links:hover {
    background-color: #151515;
    border-color: #ffffff;
    transform: translateY(-5px);
}

p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 70vw;
    text-align: center;
}

.section {
    margin-top: 100px;
    margin-bottom: 100px;
}