/* Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    background-color: #1F3A5F;
}

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

h1, h2, h3 {
    font-family: "Inter";
    font-weight: bold;
    color: #F97316;
    text-shadow: 2px 2px 1px #06B6D4;
}

body {
    background: white;
    max-width: 1000px;
    margin: 20px auto;
}

a, p {
    text-decoration: none;
    font-family: "Inter";
    color: #1F3A5F;
}

header, footer {
    background-color: #6B7280;
    border: solid 3px #1F3A5F;
    margin: 0px 10px 0 10px;
    box-shadow: #06B6D4 2px 2px 6px;
}

header {
    display: grid;
    grid-template-columns: 1fr 6fr;
}


header img {
    width: 125px;
    grid-column: 1/2;

}

header nav {
    grid-column: 2/3;
    display: flex;
    justify-content: space-around;
    align-items: center;


}

header a, footer p {
    font-size: 1.5em;
    font-weight: bold;
    color: #F97316;
    text-shadow: 1px 1px 1px #1F3A5F;
    display: flex;
    justify-content: space-around;
    align-content: center;

}

#hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5em 1em 5em 1em;
    background: white;
}

#hero img {
    max-width: 500px;
    grid-area: 1/2/4/3;
    box-shadow: #06B6D4 2px 2px 6px;
    float: right;

}

#hero h1 {
    font-size: 4em;
    padding: 0 1em 0 0;
}

#hero p {
    font-size: 1.25em;
    padding: 1em 2em 1em 0;
}

#hero a {
    justify-self: center;
    align-content: center;
    margin-right: 2em;
}

#hero button {
    width: 150px;
    height: 40px;
    background-color: #06B6D4;
    border: #06B6D4 solid 2px;
    border-radius: 25px;
    color: white;
    font-size: 20px;
    box-shadow: #1F3A5F 3px 3px 4px;
}

#intro {
    margin: 0 20px 0 20px;
    font-size: 20px;
}

#intro p {
    margin: 10px 0 10px 0;
}

footer {
    height: 50px;
    align-content: center;
    margin-top: 20px;
}