@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Text:ital@0;1&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
}

h1 {
    font-family: "DM Serif Text", serif;
    color: #fff7e6;
    font-size: 40px;
}

p {
    color: #DCD7C9;
    font-size: 20px;

    a {
        color: #DCD7C9;
        border-bottom: 2px solid #ffdbbd;
        transition: color 0.5s, border-bottom 0.5s; 
        text-decoration: none;
        
    }

    a:hover {
        color: #ffdbbd;
        border-bottom: 2px solid transparent;
    }
}

::selection {
    background-color: #FFFAEC;
    color: #3D3D3D;
    
  }
  
  ::-moz-selection {
    background-color: #FFFAEC;
    color: #3D3D3D;
  }

body {
    margin-left: 20px;
    background-color: #2C3930;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    .links {
        display: flex;
        margin-top: 10px;
        gap: 10px;

        a {
            svg {
                width: 30px;
                height: 30px;
                fill: #DCD7C9;
                transition: fill 0.5s;
                
            }
        }
        a:hover svg {
            fill: #ffdbbd;
        }
    }
    
}