* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: #f5f5f5;
}
h2 {
    margin-bottom: 100px;
    font-size: 2rem;
}
.container {
    max-width: 960px;
    margin: 100px auto;
    padding: 10px;
}
.form_container {
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 2rem);
    margin: 20px 200px;
    gap: 10px;
}

.form_container .btn {
    border-radius: 10px;
    background: lightblue;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
}

.header__navlist {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__navlist a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

ul {
    list-style: none;
}

.home {
    list-style: circle;
    margin: auto 100px;
    font-family: 'Robot';
    font-weight: bold;
    color: blue;
}

@media(max-width:768px){
    .container{
        margin: auto;
        width: 100%;
    }

    .form_container {
        margin: 20px;
    }

    h2 {
        margin-top: 50px;
    }
}