@font-face {
    font-family: 'Young serif';
    src: url(./assets/fonts/young-serif/YoungSerif-Regular.ttf);
}

@font-face {
    font-family: 'Outfit';
    src: url(./assets/fonts/outfit/Outfit-VariableFont_wght.ttf);
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit';
}

body{
    background-color: hsl(30, 54%, 90%);
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-self: center;
    margin: 50px auto;
    padding-bottom: 50px;
}

.card{
    width: 100%;
    margin: 20px;      
    max-width: 650px;
    height: auto;
    padding: 30px;
    background: hsl(0, 0%, 100%);
    color: hsl(30, 10%, 34%);
    border-radius: 10px;
}

h1{
    margin: 15px 0 15px 0;
    color: hsl(24, 5%, 18%);
    font-family: 'Young serif', serif;
}

h4{
    color: hsl(332, 51%, 32%);
    font-family: 'Outfit', sans-serif;
}

.h4{
    padding: 5px 0 5px 0;
}

img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.content{
    color: hsl(30, 10%, 34%);
    font-size: 16px;
    padding-bottom: 10px;
}

b{
    font-weight: 700;
}

.list1{
    background: hsl(330, 100%, 98%);
    padding: 10px 20px;
    border-radius: 10px;
    margin: 10px 0 20px 0;
}

.h2{
    padding-bottom: 10px;
    color: hsl(14, 45%, 36%); 
    font-family: 'Young serif';
}

.list1 li::marker{
    list-style-type: circle;
    color: hsl(332, 51%, 32%);
}

li{
    padding: 5px 0;
}

.list2{
    margin-bottom: 10px;
}

.list2 li::marker{
    list-style-type: circle;
    color: hsl(14, 45%, 36%);
}

.list3 li::marker{
    color: hsl(14, 45%, 36%);
}

hr{
    margin: 10px 0 10px 0;
    border-color: hsl(30, 18%, 87%);
    width: 100%;
}

ul, ol{
    padding: 0px 20px;
}

.table{
    padding-bottom: 10px;
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
}
  

table{
    width: 100%;
    border-collapse: collapse;
}

tr{
    border-bottom: 1px solid hsl(30, 18%, 87%);
}

td{
    padding: 10px 20px;
}

.bold{
    color: hsl(14, 45%, 36%);
}

footer{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
/*
@media screen and (max-width: 600px) {
    body {
      padding: 20px;
      margin: 0;
    }
  
    .card {
      padding: 20px;
    }
  
    .content {
      font-size: 14px;
    }
  
    td {
      padding: 8px 10px;
    }
  }
*/  

.attribution { 
    font-size: 18px; 
    text-align: center; 
}

.attribution a { 
    color: hsl(14, 45%, 36%); 
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.attribution a:hover{
    text-shadow: -2px -2px 8px hsl(14, 45%, 56%);
    filter: brightness(150%);
}
