@import 'reset.css';
@import 'grid.css';
@import url('https://fonts.googleapis.com/css2?family=Protest+Riot&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

:root{
    --p-fluid: clamp(1rem, 0.998rem + 0.158vw, 1.125rem);
    --h3-fluid: clamp(0.875rem, 0.873rem + 0.158vw, 1rem);
    --h2-fluid: clamp(1.125rem, 1.123rem + 0.158vw, 1.25rem);
    --h1-fluid: clamp(1.313rem, 1.309rem + 0.316vw, 1.563rem);
    --title-fluid: clamp(1.875rem, 1.866rem + 0.949vw, 2.625rem);
    --boxShadow: 3px 3px 10px -6px #000000;
}

h1{
    font-size: var(--h1-fluid);
    font-family: "Protest Riot", sans-serif;
    color: #c90000;
}
h2{
    font-size: var(--h2-fluid);
    font-family: "Protest Riot", sans-serif;
    color: #c90000;
}
h3{
    font-size: var(--h3-fluid);
    font-family: "Varela Round", sans-serif;
    color: #666666;
}
p{
    font-size: var(--p-fluid);
    font-family: "Varela Round", sans-serif;
    color: black;
}
.center{
    text-align: center;
}

.date{
    text-align: right;
    padding-top: 5px;
}

.header{
    text-align: center;
}

.card{
    border-radius: 10px;
    border: 3px solid #c90000;
    /* box-shadow: 6px 13px 30px -18px #000000; */
    box-shadow: var(--boxShadow);
    padding: 10px;
    color: #fff;
}
.fillout{
    border-radius: 10px;
    border: 3px solid #c90000;
    padding: 10px;
    box-shadow: var(--boxShadow);
}
input{
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    line-height: 3rem;
    border: 2px solid  #c90000;
    font-family: "Varela Round", sans-serif;
    box-shadow: inset 3px 2px 10px -7px #000000;
}
#message{
    width: 93%;
}
#name{
    width: 95%;
}
.btn{
    border-radius: 5px;
    margin-left: 90%;
    width: 110%;
    background-color: #c90000;
    height: 100%;
    padding: 5px;
    border: none;
    color: #fff;
    font-family: "Varela Round", sans-serif;
    box-shadow: 6px 13px 30px -18px #000000;
}
.nameTitle{
    overflow-wrap: break-word
}
input::placeholder{
    color: #c90000;
}

.title{
    padding-top: 50px;
    font-size: 5rem;
}
tbody{
    width: 100%;
}
form{
    display: grid;
}
.memo{
    padding-left: 10px;
}
