/*
Copyright© 2025
All Rights Reserved
*/
/* 
    Created on : Feb 17, 2025
    Author     : cabinurrs
*/


.fade {
    opacity: 0;
    animation: fadeIn 0.4s forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

// NotoSerif Regular
@font-face {
    font-family: "noto-serif";
    src: url('../files/fonts/notofonts/NotoSerif-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

// NotoSerif Bold
@font-face {
    font-family: "noto-serif";
    src: url('../files/fonts/notofonts/NotoSerif-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "ubuntu-local";
    src: url(../files/fonts/ubuntu);
    font-weight: normal;
    font-style: normal;
}
* {
    font-family: "noto-serif";
}


.button-default {
    a:link, a:visited {
        background-color: HSL(60, 80%, 93%);
        /* HSL(60, 80%, 90%) == lightgoldenyellow*/
        color: black;
        border: 2px solid HSL(60, 80%, 80%);
        width: 70%;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        transition-duration: 0.2s;
        box-shadow: 0 1px 1px 0 rgba(0,0,0,0.24),0 10px 30px 0 rgba(0,0,0,0.19);
    }

    a:hover{
        background-color: hsl(60,100%,97%);
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    }
    a:active{
        background-color: hsl(60,100%,90%);
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    }
}

.top-navbar {
    overflow: hidden;
    background-color: HSL(60, 80%, 90%)/* best blue: hsl(195, 40%, 70%)/* /* idk what this is: HSL(207, 47%, 62%);*/;
    border: 4px solid hsl(195, 20%, 75%);
    border-radius: 25px;
    /*box-sizing: border-box;*/
    
    a {
        float: left;
        color: black;
        border: 2px solid HSL(60, 80%, 80%);
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 25px;
        transition-duration: 0.3s;
    }
    a:hover {
        background-color: hsl(60,100%,97%)/* best blue : hsl(195, 20%, 75%)*/;
    }
    a:active {
        background-color: hsl(60,100%,85%);
    }
}

.oldtop-navbar {
    
    overflow: hidden;
    background-color: hsl(195, 40%, 70%)/*HSL(207, 47%, 62%);*/;
    border: 4px solid hsl(195, 20%, 75%);
    border-radius: 25px;
    /*box-sizing: border-box;*/
    a {
        float: left;
        color: black;
        border: 2px solid hsla(195, 30%, 70%, 0.9);
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 25px;
        transition-duration: 0.3s;
    }
    a:hover {
        background-color: hsl(195, 20%, 75%);
    }
    
}

.middlebox {
    margin-left: 25vw;
    margin-right: 25vw;
    transition: ease-out 0.1s;
}

.middlehead {
    margin-left: 22vw;
    margin-right: 22vw;
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 0.6vw;
    padding-bottom: 0.5vw;
    
}


.gold-bg {
    background-color: HSL(60, 80%, 90%)/*lightgoldenrodyellow*/;
}
.graygold-bg {
    background-color: HSL(60, 40%, 90%);
}/* renk HSL(60, 40%, 90%) */


.happylink {
    a:hover {color: darkgreen}
    a:active {color: lightgreen}
}
.angrylink {
    a:hover {color: darkred}
    a:active {color: red}
}


.heavyshadow {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
.lightshadow {
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.24),0 10px 30px 0 rgba(0,0,0,0.19);
}


.heavyrounding {
    border-radius: 25px;
}
.lightrounding {
    border-radius: 10px;
}
.tinyrounding {
    border-radius: 5px;
}


.rounded-paragraphpadding {
    padding-left: 10px; 
}

.rounded-textpadding {
    padding-left: 5px;
    padding-right: 5px;
}


.funky-border {
    border: 6px solid gray;
    box-sizing: border-box;
    border-bottom: 0px;
    border-top: 0px;
}


.inline {
    display: inline;
}
.block {
    display: block;
}

.resize-container {
    display: flex;
    margin: 0;
    padding: 0;
    resize: both;
    overflow: hidden;
}

.resize-container > .resized-content {
    flex-grow: 1;
    margin: 0;
    padding: 0;
    border: 0;
}

.dotted-border1 {
    background: yellow;
    border: 4px dashed black;
}


@media only screen and (max-width:600px){
    .middlebox{
        margin-left: 5vw;
        margin-right: 5vw;
    }
}




















        

