* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}
img {
    width: 100%;
}

body {
    background-color: #EFF2F7;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}
h1 {
    font-size: 1.59rem;
    font-weight: 600;
    text-align: center;
    grid-row: 2/3;
}
a {
    display: block;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    font-size: 1.5rem;
}

.btn {
    color: #fff;
    background: #387C2C;
    padding: 1rem;
    
    width: 100%;  
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s;
  
}

.btn:hover {
    background: #2f6625;
}
.grid-column {
    width: 100vw;
    margin-top: 2rem;
    row-gap: 1em;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) minmax(210px, 420px) minmax(1rem, 1fr);
}

.col-grid {
    grid-column: 2;
    align-self: center;
    justify-self: center;
    text-align: center;
       
}
.col-grid-left {
    grid-column: 2;
    align-self: center;
    justify-self: left;
    text-align: left;
       
}

.logo {
    grid-column: 1;
    background-image: url(img/logo.svg);
    height: 85px;
    width: 120px;
    grid-column: 2;
    align-self: center;
    justify-self: center;
    background-repeat: no-repeat;
}