@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgba(0,0,0,0.1);
    color: #333333;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center top;
    background: linear-gradient(180deg, #d5e1e8, rgba(255, 255, 255, 0)), url(lines.svg) center top no-repeat;
    background-size: 1400px;

    &.main{
        section{
            margin: 3rem auto;
            padding: 3rem;
            background-color: #FFF;
            max-width: 60rem;
            border-radius: 0.5rem;
            box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
        }
    }
}

form{
    margin: 3rem auto;
    padding: 3rem;
    background-color: #FFF;
    max-width: 60rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);


 
}

