@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans&display=swap');

:root {
    --red: #c1331c;
    --bg: #fceadc;
}


body {
   background-color:var(--bg);
    
    /**font defaults**/
    font-family: "Kosugi Maru";
    font-size: 18px;
    color: var(--red);
    overflow: auto;
    
    cursor: url('../img/site/cursor/fish.png'), pointer;
    
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

b {
    font-size: 80%;
    font-weight: 1000;
}

a {
    color: var(--red);
    text-decoration: none;
    
    cursor:  url('../img/site/cursor/fish2.png'), pointer;  
}

a[href*="//"]:not([href*="https://mn1ca.neocities.org"]) {
    border-bottom: 1px dashed var(--red);
}

#wrapper {
    width:100%;
    height:100%; 
    margin: 0 auto;
    position: relative;
}

#main {
    width: 300px;
    z-index: 0;
    
    pointer-events: none;
    
    position: relative;
    top: 50px;
    
    content: url('../img/site/index/main.png');
}

#hook {
    width: 195px;
    height:418px;
    position: relative;
    top: -700px;
    left: 155px;
    background: url('../img/site/index/hook.png') 0 0;
    transform: scale(0.35);
    z-index: 1;
    
    cursor: url('../img/site/cursor/fish2.png'), pointer;
}

#clickme {  
    width: 100px;
    position: relative;
    top: -960px;
    left: 220px;
    
    display: none;
}

#hook:hover + #clickme {
    display: block;
}

#line {
    width: 290px;
    position: relative;
    top: -550px;
    min-height: 200px;
    max-height: 650px;
    z-index: 2;
    color: black;
    border-right: 2px solid #5f210c;
    background-attachment: fixed;
    z-index: 0;
}

.link {
    font-size: 40px;
    position: relative;
    width: 200px;
    text-align: right;
    z-index: 3;
}

.link:hover {
    background-color: #f7cfb0;
}

.bottom {
    font-size: 18px;
    position: relative;
    top: 230px;
    width: 200px;
    text-align: right;
    text-transform: uppercase;
    border-top: 3px solid var(--red);
    padding: 10px 0px 20px;
    font-weight: 1000;
}

@media only screen and (max-width: 600px) {
    
    #clickme {
        top: -910px;
        left: 150px;
        width: 50px;
    }
}

@media only screen and (max-width: 300px) {
    
    #line {
        width: 294px;
    }
    
    #hook {
        left: 190px;
    }
    
    #clickme {
        top: -910px;
        left: 180px;
        width: 50px;
    }
}