﻿@charset "utf-8";

/*ROOT*/
:root {
    /*color set (사이트별지정)*/
    /*--color-main: rgba(54,194,186,1);*/
    --color-main: #f83546;
    --color-main-light-100: rgba(54,194,186,0.1); /*main-color-opacity 10%*/
    --color-point: #59B4C3;
    --color-sub-point: #211C6A;
    --color-afreeca: #f83546;
    /*color set(common)*/
    --color-gray-100: rgba(245,247,249,1);
    --color-gray-200: rgba(239,240,242,1);
    --color-gray-300: rgba(222,223,226,1);
    --color-gray-500: rgba(182,187,197,1);
    --color-gray-700: rgb(139, 143, 151);
    --color-gray-900: rgba(98,108,121,1);
    --color-black-300: rgba(25,31,40,1);
    --color-red: rgba(248,52,70,1);
    /*text-color*/
    --txt-color-def: rgba(25,31,40,1);
    /*font-weight*/
    --txt-thin: 100;
    --txt-light: 300;
    --txt-regular: 400;
    --txt-medium: 500;
    --txt-semibold: 600;
    --txt-bold: 700;
    --txt-extrabold: 800;
}


header h1 img {
    height: 6rem !important;
}

.buy_banner {
    width: 70%;
}

@media screen and (max-width: 960px) {
    .buy_banner {
        width: 100%;
    }

    header h1 img {
        height: 5rem !important;
        max-height: unset !important;
    }


}