/* main {
    background-color: blueviolet;
}
.container {
    background-color: indianred;
}
.logo {
    background-color: aquamarine;
}
.content {
    background-color: #f0f0f0;
} */

@font-face {
    font-family: 'InstrumentSans';
    src: url('InstrumentSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'CRAI';
    src: url('CRAI-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'InstrumentSans', sans-serif;
}
main {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
    justify-content: center;
    gap: 140px;
}
.logo {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
}
.logo img {
    width: 100%;
}
h1,
.subtitle {
    color: #006F45;
    font-family: 'CRAI', sans-serif;
}
h1 {
    font-size: 49px;
    margin-top: 0;
    margin-bottom: 16px;
}
.subtitle {
    font-size: 27px;
    margin-bottom: 32px;
}
.content p {
    font-size: 21px;
    color: #1D1D1D;
}

@media (max-width: 600px)  {
    .logo img {
        width: 70%;
    }
    .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 80px;
        padding-left: 16px;
        padding-right: 16px;    
    }
    h1 {
        font-size: 26px;
    }
    .subtitle {
        font-size: 20px;
    }
    .content p {
        font-size: 16px;
    }
}