/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    height: 100vh;
    display: flex;
    background-image: url('img/duck.png');
    font-size: 18px;
}
.resize-breaker {
    visibility: hidden;
    height: 0;
    width: 0;

}

.wrapper {
    margin: auto;
    min-width: 75%;
    width: 75%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    flex-shrink: 0;
    background-color: #e9f4ff;
}
.header {
        padding: 0 5%;
    width: 100%;
    height: 54px;
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    background-color: #ff9668;
    color: #f4f9ff;
    font-size: 28px;
}
.header ul {
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 18px;
}
.header li {
    display: inline;
    align-content: center;
    height: 75%;
    margin: auto;
    border: 1px solid #e9f4ff;
    padding: 0 36px;
    font-size: 18px;
    border-radius: 8px;
}
.header li:hover {
    background-color: #ffe43f;
}
.header a {
    color: #f4f9ff;
    text-decoration: none;
}
.header a:hover {
    color: #ff9668;
}
.hero {
    background-color: #82b6ff;
    padding: 36px 5% 0;
}
.hero-content {
    margin: 1% 0;
    display: flex;
    justify-content: space-between;
    align-content: center;
}
.hero-text {
    width: 50%;
    font-size: 20px;
}
.hero-text p {
    margin: 0 0 20px 0;
}
.hero-img {
    content: ' ';
    width: 374px;
    height: 250px;
    background-image: url('img/graduates.png');
    background-repeat: no-repeat;
    border: 1px solid #e9f4ff;
}
.hero button {
    margin: 0 33%;
    border: 2px solid #ff9668;
    background-color: #ffe43f;
    font-size: 20px;
    padding: 18px;
    color: #ff9668;
}
.hero button:hover {
    background-color: #ffeda3
}
.site {
    background-color: #f4f9ff;
    padding: 1% 5%;
    text-align: center;
}
.site-nav {
    margin: 5%;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.img-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    border: 2px solid #ff9668;
    padding: 8px;
    border-radius: 8px;
}
.img-wrap a {
    color: #ff9668;
    text-decoration: none;
}
.img-box {
    content: ' ';
    background-image: url('img/purchase.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 64px;
    width: 64px;
}
.quote {
    padding: 2% 5%;
    font-size: 20px;
    font-weight: bold;
    background-color: #e9f4ff;
    display: flex;
    flex-direction: column;
}
.quote-text {
    font-size: 36px;
    font-weight: normal;
    font-style: italic;
}
.who-said {
    margin: 0 0 0 auto;
}
.action-wrap {
    background-color: #f4f9ff;
    padding: 2% 5%;
    text-align: center;
}
.action {
    width: 75%;
    margin: 2% auto;
    background: #ffe43f;
    padding: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    border-radius: 18px;
}
.action-text h3 {
    color: #ff9668;
    margin: 0 0 8px;
}
.action button {
    padding: 10px;
    background: #ffe43f;
    color: #ff9668;
    font-weight: bold;
    font-size: 20px;
    border: 2px solid #ff9668;
    border-radius: 8px;
}
.footer {
    background-color: #ff9668;
    padding: 12px;
    font-size: 16px;
    color: #f4f9ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* media query because it's super cursed on resize, and yes the instructions said not
to care OR use media queries, but this is the for funsies extra one and I didn't do it
on the "real" one at least */
@media only screen and (max-width: 768px) {
    .wrapper {
        display: none;
    }
    .resize-breaker {
        visibility: visible;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #fff;
    }
    .resize-breaker h2 {
        text-align: center;
    }
    .resize-breaker img {
        width: 250px;
        height: auto;
    }
}