:root {
    --color1: #fffdf7;
    --color2: #CB3B3B;
    --color3: #361E18;
    --color4: #f7dead;
    --color5: #fdf6e6; 
}

@font-face {
    font-family: 'nightclash'; /*a name to be used later*/
    src: url(/assets/night_clash/Night\ Clash.otf); /*URL to font*/
}

@font-face {
    font-family: 'sunday'; /*a name to be used later*/
    src: url(/assets/casual_sunday/Casual\ Sunday.otf); /*URL to font*/
}

@font-face {
    font-family: 'tempting';
    src: url(/assets/tempting/Tempting\ -\ PERSONAL\ USE\ ONLY.otf);
}

@font-face {
    font-family: ananda;
    src: url(/assets/ananda_2/Ananda\ Personal\ Use.ttf);
}

body {
    background-color: var(--color1);
}

html {
    overflow-y: scroll;
}


/* header */

.nav {
    position: sticky;
    
    display: flex; 
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    top: 0;
    z-index: 1;
    background: var(--color5);
    height: 115px;
    border-radius: 0 0 10px 10px;
}


.header-logo {
    width: 25rem;
    transform: rotate(-3deg);
    position: sticky;
    top: -10px;
    left: 0px;
}

.nav-link {
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color1);

    background-color: var(--color2);
    border: solid var(--color3) 2px;
    padding: 10px 20px;
    margin: 0 20px;
    border-radius: 25px;
    max-height: 50px;

}

.nav-link:hover {
    opacity: 0.7;
}

.lechonk-link {
    display: inline-block;
}

.lechonk-click {
    width: 50%;
}

.click-me {
    display: inline-block;
    position: relative;
    transform: rotate(15deg);
    top: -4rem;
    right: 50px;
    color: var(--color3);
    font-weight: bold;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.lechonk-click:hover {
    animation: lechonk 1s infinite;
}

@keyframes lechonk {
    0% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

/* header */

/* divide */

.divide {
    margin-top: 1px;
    margin-bottom: 1px;
    margin-right: auto;
    margin-left: auto;

    width: 98vw;
    border: solid var(--color3) 1.5px;
}

/* divide */

.disclaimer {
    color: var(--color2);
    font-weight: bolder;
    font-size: 1rem;
    text-align: center;
}

/* Home-About Section */

.about-container {

    margin: 10px auto;
    width: 80vw;

    display: flex;
    flex-wrap: wrap;
}

.me {
    margin-left: auto;
    width: 25rem;
    transform: rotate(-1deg);
    align-self: flex-start;
}

.me-header {
    font-size: 5rem;
    transform: rotate(1deg);
    font-family: sunday;
    font-weight: lighter;
    margin: 20px 0 0 0;
}

.me-container {
    font-family: nightclash;
    font-size: 1.5rem;
    color: var(--color3);
}

.me-container p {
    margin: 5px;
}

.flag {
    display: inline-block;
    width: 4rem;
    border-radius: 5px;
}

.sticky {
    background-color: var(--color4);
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 25px 20px 25px;;
    padding: 20px;
    font-family: nightclash;
    box-shadow: 0 10px 10px 2px rgba(0,0,0,0.3);
    margin-right: auto;
}

.note-1 {
    font-size: 1.5rem;

    position: relative; 
    top: 3.5rem;
    transform: rotate(-5deg);

}

.note-1 h2 {
    margin: 0;
    font-weight: normal;
}

.note-1 ul {
    margin-top: 0;
}

.note-2 {
    font-size: 1.5rem;
    
    position: relative;
    top: 1.25rem;
    transform: rotate(2deg);
}

.note-2 h2 {
    margin: 0;
    font-weight: normal;
}

.note-2 ul {
    margin-top: 0;
}

.note-3 {
    position: relative;
    transform: rotate(-2deg);
    top: 1rem;
}

.note-3 h2 {
    margin: 0 auto;
    font-weight: normal;
    font-size: 2rem;
    text-align: center;
}

.note-3 p {
    font-size: larger;
}

/* Project Section */

.section-title {
    font-size: 3rem;
    font-weight: normal;
    font-family: ananda;
    color: var(--color3);
    text-align: center;
    margin: 0;
}



.hobbies {
    margin-top: 10px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 80vw;

    display: flex;
    flex-wrap: wrap;
}

.hobby {
    margin: 10px auto;
}

.hobby-title {
    font-size: 1.5rem;
    font-weight: normal;
    font-family: nightclash;
    text-align: center;
    color: var(--color2);
    margin-bottom: 0;
}

.hobbyimg {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
}


/* Socials Section*/

#socials {
    width: 90vw;
    display: flex;
    flex-wrap: wrap;
    margin: 10px auto;
}

.social {
    padding: 20px;
    text-align: center;
    margin: 5px auto;
}

.social-title {
    font-size: 3rem;
    font-family: sunday;
    margin: 0;
    color: var(--color2);
}

.social-link {
    text-decoration: none;
}

.social-capt {
    font-size: 1.5rem;
    max-width: 500px;
    font-family: nightclash;
    color: var(--color3)
}

/* Footer */

.footer {
    background-color: var(--color5);
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 10px 10px 0 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
}

.contact-title {
    font-size: 1.5rem;
    text-align: right;
    color: var(--color3);
    margin-bottom: 0;
}

.contact-link {
    text-align: right;
    display: block;

    color: var(--color2);
    text-decoration: none;
    font-size: 1rem;
}

.si {
    color: var(--color3);
    font-size: 0.90rem;
    font-style: italic;
}

.copyright {
    text-align: center;
    color: var(--color3)
}


/* LECHONK */

.lechonk h1 {
    color: var(--color2);
    text-align: center;
    margin-bottom: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


.lechonk h2 {
    color: var(--color3);
    
    margin: 5px auto;
    
    padding: 10px;

    width: 50vw;
    text-align: center;

}

.lechonk .sub-title-desc {
    color: var(--color3);
    
    margin: 5px auto;
    padding: 10px;

    width: 50vw;
    text-align: left;
}

.lechonk p {
    font-size: 1.25rem;
    padding-left: 10px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    color: var(--color3);
   
}

.lechonk .desc {
    font-style: italic;
    font-weight: bold;
    
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}

.desc-img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 10px auto;
}

.game-title {
    text-align: center;
    font-size: 2rem;
}

.game {
    display: flex;
    width: 80vw;
    margin: 10px auto;
    padding: 20px 10px;
    background-color: var(--color5);
    border-radius: 10px;
}

.game-desc {
    width: 50%;
    margin: auto auto;
}

/*construction*/

.const {
    background-image: repeating-linear-gradient(
    -55deg,
    #361E18,
    #361E18 20px,
    #f7dead 20px,
    #f7dead 40px);
    width: 98vw;
    height: 50px;
}


