* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}

:root {
    --bg-color: #221F20;
    --font-color: #EBEBEB;
}

html,
body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
}


h1, 
p, 
a {
    color: var(--font-color);
    text-align: center;
}

h1 {
    font-size: 45px;
    line-height: 1.1;
}

p,
a {
    font-size: 18px;
    transition: ease-in-out 300ms;
    display: inline-block;
    text-decoration: none;
    font-weight: 300;
}

a:hover { color: #FBE149; }

.wrapper {
    width: 100%;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.wrapper .img-wrap {
    width: 100%;
    max-width: 250px;
}

.wrapper .img-wrap img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 650px) {
    h1 { font-size: 65px; } 
    p, a { font-size: 25px; }
}