@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');
/*BLUE-GOLDEN THEME*/
:root {
    --color-body: rgb(202, 200, 187);
    --color-heading: rgb(238, 243, 219);
    --color-base: rgb(2, 35, 65);
    --color-base2: rgb(2, 20, 39);
    --color-brand: rgb(242, 169, 40);
    --color-brand2: rgb(242, 169, 0);
    --sidbar-width: 240px;
    --font-base: "Bai Jamjuree";
}


*{
    margin: 0;
    padding:0;
}

body {
    background-color: var(--color-base2);
    color: var(--color-body);
    font-family: var(--font-base), sans-serif;
}



.full-height{
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid rgba(255,255,255,0.1); 
}

.shadow-effect{
    transition: all 0.5s
}

.shadow-effect:hover{
    box-shadow: -6px 6px 0 0 var(--color-brand)
}

img{
    width: 400px;
}

/*img:hover{
    transform: scale(1.2);
}



/* CARD */
.cards{
    margin-top: px;
}

.card-custom, .card-custom-image{
    overflow: hidden;
}

.card-custom, .card-custom-image img{
    transition: all 0.3s ease;
}

.card-custom:hover, .card-custom-image img{
    transform: scale(1.02);
    border: 1px var(--color-brand) solid
}

.card-custom{
    border: 1px var(--color-base) solid;
}

#first{
    color: var(--color-brand)
}

#output p, .card-custom p{
    color: var(--color-brand)
}


.css-button-fully-rounded--grey {
    min-width: 130px;
    height: 40px;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 20px;
    border: 2px solid #495057;
    background: var(--color-base2);
  }
  .css-button-fully-rounded--grey:hover {
    background: var(--color-base);
    color: var(--color-brand);
    border: 1px var(--color-brand) solid;
  }

  #output{
    min-height: 176px;

  }

  @media(max-width: 768px){
    .icon-container{
        display: flex;
        height: 50%;
        flex-shrink: 1;
    }
    .card-custom{
        height: 30vh;
    }
    .card-custom-image{
        width: 200px;
    }
  }

  @media(max-width: 425px){
    .icon-container{
        display: flex;
        flex-direction: column;
        height: 50%;
    }
    .card-custom{
        height: 15vh;
    }
    .card-custom-image{
        display: none;
    }
  }