* {
    margin: 0;
    padding: 0;
    font-family: "Kreon", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    color: white;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
}

.SectionContainer {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: absolute;
}

.Section {
    width: 100%;
    height: 100%;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: left;
    overflow: hidden;
}

img {
    height: 150px;
    width: 150px;
    max-width: 50%;
    border-radius: 200px;
    margin-bottom: 10px;
    object-fit: cover;
    object-position: top;
}

button {
    width: 300px;
    max-width: 90%;
    height: 70px;
    padding: 10px;
    border-radius: 10px;
    border: #A64B86 solid 1px;
    background-color: black;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cascadia Mono', monospace;
    box-shadow: 0 0 8px #A64B86, 0 0 12px #A64B86, 0 0 16px #A64B86;
    animation: glowOrbit 5s infinite linear;
    position: relative;
    text-align: center;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #A64B86, 0 0 25px #A64B86, 0 0 35px #A64B86;
}

button::after {
    content: ".";
    right: 30px;
    animation: dots 2s infinite steps(3);
}

@keyframes dots {
    0%   { content: "."; }
    33%  { content: ".."; }
    66%  { content: "..."; }
    100% { content: "."; }
}

@keyframes glowOrbit {
    0%   { box-shadow: 0px -10px 20px #A64B86; }
    25%  { box-shadow: 10px 0px 20px #A64B86; }
    50%  { box-shadow: 0px 10px 20px #A64B86; }
    75%  { box-shadow: -10px 0px 20px #A64B86; }
    100% { box-shadow: 0px -10px 20px #A64B86; }
}

#skip-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #A64B86;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Cascadia Mono', monospace;
    cursor: pointer;
    z-index: 9999;
    transition: background-color 0.3s ease;
}

#skip-button:hover {
    background-color: #c769a0;
}

.typewriter {
    width: 100%;
    max-width: 700px;
    font-size: 1.2rem;
    line-height: 1.8rem;
}

@media screen and (max-width: 768px) {
    .Section {
        padding: 30px 15px;
        text-align: center;
    }

    .typewriter {
        font-size: 1rem;
        width: 95%;
        line-height: 1.6rem;
    }

    img {
        width: 150px;
        margin-bottom: 15px;
    }

    button {
        height: 60px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .typewriter {
        font-size: 0.95rem;
        line-height: 1.5rem;
    }

    button {
        height: 55px;
        font-size: 13px;
    }

    #skip-button {
        padding: 8px 12px;
        font-size: 12px;
    }
}
