
* {
    margin: 0;
    padding: 0;
    font-family: Tiresias_Infofont;
    font-optical-sizing: auto;
    font-weight: 400px;
    font-style: normal;
}

@font-face {
    font-family: Tiresias_Infofont;
    src: url(Tiresias_Infofont.ttf);
  }

body {
    display: grid;
    grid-template-areas:
    "header"
    "main"
    "footer";
    grid-template-rows: auto auto auto;
    min-height: auto;
    margin:0;
    padding:0;
    justify-content: center;
}

header {
    margin: 100px;
    padding-top: 50px;
    max-height: 200px;
    width:fit-content;
}

header h1 {
    display:flex;
    font-size: 2em;
    text-wrap: nowrap;
}


/*DOWNLOAD PORTFOLIO SECTION*/
main {
    display:grid;
    grid-template-columns: 1fr;
    padding-top: 20px;
    height: 150px;
    margin:0;

}

/*EMAIL SUBSCRIPTION SECTION*/
.container {
    display:grid;
    grid-template-rows: 1fr;
    justify-content: center;
    padding: 30px;
    width: 400px;
/*    border: solid;
    border-width: thin;
    border-color: #b5b5b5; */
    margin: auto;
    align-items: center;
}

a {
    color: black;
    font-size: 1.4em;
    text-decoration: none;
}

h2 {
    padding-bottom: 20px;
}

.mc-field-group {
    padding-bottom: 20px;
}

input {
    display:flex;
    justify-content: space-between;
}

.indicates-required {
    margin-bottom: 10px;
    font-size: 15px;
}


.mega {
    display:grid;
    grid-template-rows:1fr 2fr;
    justify-content: center;
    width: 100%;
}

@media only screen and (max-width: 600px) {
    
    html, body {
        width: 100%;
        font-size: 12px;
        margin:auto;
        overflow-x: hidden;

    }

    header {
        width:auto;
    }




  }