*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    font-size: 62.5%; 

    /* dark mode */
    --bg-color: #1d1d1d;
    --accent: #bb1eae61;
    --accent-2: #6d53c278;
    --text-color: #f0f0f0;
    --highlight: #d3bdec;
}


html,
body {
    font-family: 'Inter';
    font-size: 1.6vh;
    color: white;
    height: 100%;
    width: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    /* padding: 0; */
    font-family: 'Inter';
}

body {
    background-image: url('../assets/images/mobile.png');
    background-size: cover;
    background-color: var(--bg-color);
    list-style: none;
}

button {
    width: fit-content;
    padding: 2rem 4.5rem;
    background: var(--accent);
    border: none;
    margin: .65rem;
    color: var(--text-color);
    font-weight: 550;
    font-size: 2rem;
    cursor: pointer;
    border-radius: .75rem;
    filter: blur(5);
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    padding: 4rem;
}

header > span > a, header > span > a:visited { 
    color: var(--highlight);
    font-weight: 850;
    text-decoration: none;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-size: 0% 0.2em;
    background-position-y: 100%;
    background-position-x: 50%;
    background-repeat: no-repeat;
    transition: background-size 0.2s ease-in-out;

}

header > span > a:hover, header > span > a:visited:hover { 
    background-size: 100% 0.2em;
    transition: 500ms all ease;
}

header > span:nth-of-type(1) { 
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

header > span:nth-of-type(2) {
    padding-top: 2rem;
    font-size: 3rem;
    font-weight: 650;
}

.dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.dot {
    height: 10px;
    width: 10px;
    margin: .3rem;
    border-radius: 50%;
    background: white;
}

#socials, #others {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.title {
    padding-bottom: 1rem;
    font-size: 2.4rem;
    width: 100%;
    font-weight: 660;
    text-align: center;
}

#others button {
    background: var(--accent-2);
}

footer {
    display: flex;
    position: absolute;
    flex-direction: column;
    left: 0;
    right: 0;
    height: 25vh;
    margin-top: 5rem;
    padding: 2.5rem;
    background: #ffffff23;
    font-size: 1.87rem;
    line-height: 1.2;
}

footer span {
    margin-top: auto;
}


footer a, footer a:visited {
    color: var(--highlight);
}

@media screen and (min-width: 768px) {
    body {
        background-image: url('../assets/images/desktop.png');
        background-size: auto auto; /* Width covers 100% of the container, height adjusts automatically */
        background-repeat: no-repeat; /* Do not repeat the background image */
        background-position: center; /* Center the background image */
    }
    
footer {
        margin-top: auto;
        position: absolute;
        bottom: 0;
    }
}
    
    
  
