/*styles.css - for Climbing Mill Holding Page*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*after,
*before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.5;
}

h2 {
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 400;
}

p,a{
    font-size:1.25rem;
}
body {
    margin: inherit;
    padding: inherit;
    min-height: 100vh;
    
}



.container {
    margin: inherit;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.33), rgba(0, 0, 0, 0.33)),
        url("../img/after-school-hero.jpg");
    background-position: top;
    background-size: cover;
    display: grid;
    grid-template-columns:1fr;
    grid-template-rows: auto 1fr max-height;
    color: #fff;
}

header.header {
    background: #fff;
    padding:1rem 2rem;
}

#logo img {
    height: 10rem;
}
.main {
    padding: 2rem;
    display: grid;
    row-gap:1rem;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.contact span a{
    color:#fff;
    text-decoration:none;
}

.contact span a:hover {
  color: yellow;
}

#launch{
    font-weight:700;
    font-size:125%;
}


.footer {
    padding: 3rem;
    background: #000;
    color: #fff;
    grid-column: 1 /-1;
    text-align: center;
}