/* Raleway & Tangerine */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');

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

:root{
    color-scheme: light;

    --font-primary: "Raleway", sans-serif;
    --font-secondary: "Tangerine", cursive;

    --b: #000;
    --cese: #6ce4ef;
    --w: #fff;

    --dark-5: #060707;

    --gray-5: #303030;

    --light-5: #fcf6f7;

    --shadow: rgb(0, 0, 0, .2);
}

body{
    color: var(--w);
    background: var(--b);
    font-family: var(--font-primary);
}

::-webkit-scrollbar{
    width: 2px;
}

::-webkit-scrollbar-thumb{
    background: var(--cese);
    border-radius: 10px;
}

::-webkit-scrollbar-track{
    background-color: var(--b);
}

::selection{
    background-color: var(--cese);
    color: var(--b);
}

/* Text */
.sf{
    font-family: var(--font-secondary);
}

h1.sf{
    font-size: 10rem;
    font-weight: bolder;
}

h6{
    font-size: 2rem;
    font-weight: lighter;
    font-style: oblique;
    text-shadow: 0 0 10px var(--sh);
}

.sentence{
    font-size: 3rem;
    font-weight: lighter;
}

mark{
    background: var(--c);
}

.x-line{
    content: '';
    width: 16vh;
    height: 2px;
    background: var(--d);
}

/* Buttons and links */
a{
    display: flex;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--g);
    position: relative;
    transition: .3s ease-in;
}

a:hover{
    color: var(--c);
    text-shadow: 0 0 1px var(--c);
}

a::after{
    content: '';
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    top: 1.1rem;
    position: absolute;
    background-color: var(--c);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

a:hover::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}

button{
    border: none;
    cursor: pointer;
}

/* Options */
#options{
    position: fixed;
    left: 15vh;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;

    .line{
        content: '';
        width: 2px;
        height: 5vh;
        background: var(--g);
        border-radius: 5px 5px 0 0;
    }
}

.btnIcon{
    background: none;
    transition: .4s ease-in-out;

    i{
        color: var(--g);
        font-size: 1.8rem;
        transition: .4s ease-in-out;
    }
}

.btnIcon:hover{
    transform: scale(1.05);

    i{
        color: var(--l);
    }
}

/* Introduction */
#intro{
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: .7fr .3fr;

    .name{
        color: var(--b);
        background: var(--w);
        display: flex;
        align-items: baseline;
        justify-content: center;
        flex-direction: column;
        padding: 4rem;
    }
}

/* Main */
main{
    height: 100vh;
}

/* Footer */
footer{
    width: 100%;
    height: 30vh;
    color: var(--d);
    background: var(--l);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    bottom: 0;
    margin-bottom: 0;
    padding: 0 6rem 1rem 6rem;
    overflow-y: hidden;

    .f-options{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    .sentence{
        flex: 1;
        text-align: right;
    }

    img{
        height: 100%;
        transform: scale(1.65);
        margin-bottom: -1rem;
    }
}