/************************** FONT **************************/

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Regular.ttf');
    font-display: block;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Medium.ttf');
    font-weight: 500;
    font-display: block;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-SemiBold.ttf');
    font-weight: 600;
    font-display: block;
}

* {
    font-family: 'Poppins';
    box-sizing: border-box;
}

/************************** ROOT **************************/

:root {
    --primary-color: #ed3a4a;
}

/************************** HTML **************************/

html {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
}

/************************** IMG **************************/

img {
    display: block;
}

/************************** BLUE HIGHLIGHT **************************/

input,
textarea,
button,
select,
a,
img,
div
{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  outline: none;
}

/************************** HREF **************************/

.href {
    color: #0000EE;
    cursor: pointer;
}

.href:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.href:active {
    opacity: 1;
}

/************************** WRAPPER **************************/

.wrapper {
    margin: 0px auto;
}

@media only screen and (min-width: 600px) {
    .wrapper {
        max-width: 600px;
    }
}

/************************** BOX **************************/

#box-center {
    width: 100%;
}

@media only screen and (min-width: 600px) {
    #box-center {
        display: grid;
        justify-content: center;
    }
}

#box {
    width: 100%;
}

@media only screen and (min-width: 600px) {
    #box {
        max-width: 600px;
        min-width: 600px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
        border: 1px solid lightgrey;
        margin-bottom: 60px;
    }
}

#box #banner img {
    width: 100%;
}