@import "fonts.css";

body {
	background-image: linear-gradient( 115deg, rgba(0, 85, 85, 0.85) 0%, rgba(51, 153, 119, 0.85) 49%, rgba(0, 85, 51, 0.85) 100% );
	background-repeat: no-repeat;
	background-size: cover;
    background-position: center;
    min-height: 100vh;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #222;
    font-family: "IBM Plex Sans", sans-serif;
}

header {
    padding: 30px 15px;
}

h1 {
	font-size: 3.5rem;
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
}

img {
    max-width: 100%;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    border: none;
    border-radius: 0.375rem;
    padding: 0.75rem 0;
    background-color: #E48;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 15px;
    width: 100%;
    text-decoration: none;
    font-family: "IBM Plex Sans 500", sans-serif;
	font-weight: 500;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn:hover,
.btn:active {
    background-color: #C26;
    cursor: pointer;
}

a {
    color: #E48;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

strong {
    font-family: "IBM Plex Sans 500", sans-serif;
}

@media (min-width: 380px) {
    .container {
        max-width: 350px;
    }
}
