@import url('https://fonts.googleapis.com/css2?family=Bilbo+Swash+Caps&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@1,600&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.main__container::-webkit-scrollbar{
    display: none;
}

.main__container {
    --text-color: white;
    --bg-color: black;
    height: 100vh;
    overflow: scroll;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.main__container.light {
    --text-color: black;
    --bg-color: white;
}

li {
    list-style: none;
}

header {
    display: flex;
    margin-top: 10px;
    height: 8vh;
    margin-left: 20px;
    margin-right: 20px;
    align-items: center;
    justify-content: space-between;
}

header > h2 {
    padding-left: 10px;
    font-size: 3rem;
    font-family: 'Bilbo Swash Caps', cursive;
}

h1 {
    font-size: 10rem;
    margin-top: -90px;
}
nav > ul{
    display: flex;
}

li {
    padding-left: 15px;
}

a {
    color: var(--text-color);
}

ul > a {
    text-decoration: none;
}

ul > a:hover, .footer a:hover {
    color: #cdcdcd;
    transform: scale(0.9);
}
.container {
    height: 94vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inner__container {
    position: absolute;
    margin-bottom: 50px;
    bottom: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100vw;
}

.but__default {
    border-radius: 20px;
    padding: 5px;
    background: none;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    height: 35px;
    width: 55px;
    cursor: pointer;
}

.but__default:focus {
    outline: none;
}

.but__default:hover {
    color: var(--bg-color);
    background: var(--text-color);
    transform: scale(0.9);
}

.about {
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    gap: 50px;
    padding-top: 40px;
    font-family: 'Bilbo Swash Caps', cursive;
}

.about > img {
    height: 30vh;
    object-fit:contain;
    border-radius: 50% !important;
    filter: grayscale(50%);
}

.footer{
    display: flex;
    padding: 20px;
    font-size: 30px;
    justify-content: center;
}

.footer__icons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media screen and (max-width: 768px){
    .about {
        flex-direction: column;
        font-size: 20px;
    }

    hr{
        margin-top: 100px;
    }

    h1{
        font-size: 8rem;
    }
}