* {
    font-family: Helvetica;
    color: white;
    font-weight: bold;
}

html, body {
    background-image: linear-gradient(#012A4A, #014F86, #468FAF);
    scroll-behavior: smooth;;
}

h1 {
    text-align: center;
    color: white;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

li {
    padding: 10px;
    display: inline-flex;
}

.intro {
    display: flex;
    padding: 10px;
    margin: 10px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        'left-column right-column'
}

.hero-image {
    width: 100%;
    border-radius: 5%;
}

.hero-intro-text {
    color: white;
    font-size: 20px;
}

.hero-subtext {
    font-size: 15px;
}

.left-column {
    grid-area: left-column;
    padding: 0px 50px 0px 50px;
    display: grid;
}

.right-column {
    grid-area: right-column;
    padding: 0px 50px 0px 50px;
    display: grid;
}

.link-container {
    display: flex;
	justify-content: space-evenly;
}

@media screen and (max-width: 900px){
    .intro {
        grid-template-columns: 1fr;
        grid-template-areas:
            'left-column'
            'right-column'
        ;
    }

    .hero-image {
        width: 100%;
    }
}
