/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* CSS Normalization */
body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
    font-family: "MicroSquare Bold";
    src: url("./microsquare-bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

html {
    font-size: 18px;
}

body {
    display: flex;
    flex-direction: column;
    /* min-height: 940px; */
    justify-content: space-between;
}
@media (min-width: 1050px) {
    body {
        min-height: 100vh;
    }
}

* {
    font-family: "MicroSquare Bold", sans-serif;
}

a {
    color: #393939;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #ffffff;
    background-color: #393939;
    border-color: #393939;
}
@media (min-width: 1050px) {
    a:hover,
    a:focus {
        background-color: unset;
        border-color: unset;
    }
}

#hero {
    position: relative;
}

#build-logo {
    padding: 10px 30px;
}
img {
    max-width: 100%;
}
#hero-video {
    display: none;
}
@media (min-width: 1050px) {
    #build-logo {
        display: none;
    }

    #hero-video {
        display: block;
    }
}

.hero-links {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px 60px;
}
@media (min-width: 1050px) {
    .hero-links {
        position: absolute;
        top: 40%;
        left: 0;
        right: 0;
    }
}
@media (min-width: 1300px) {
    .hero-links {
        gap: 35px 80px;
    }
}

.hero-link {
    opacity: 0;
    transition: color 0.5s ease, background-color 0.5s ease,
        border-color 0.5s ease, opacity 1.5s ease;
    font-size: 1.15rem;
    border: 2px solid;
    /* max-width: 45%; */
    flex: 0 0 90%;
    text-align: center;
    padding: 15px;
    white-space: nowrap;
}
@media (min-width: 400px) {
    .hero-link {
        font-size: 1.5rem;
    }
}
@media (min-width: 1050px) {
    .hero-link {
        flex: 0 0 40%;
    }
}
@media (min-width: 1150px) {
    .hero-link {
        font-size: 2rem;
    }
}
@media (min-width: 1415px) {
    .hero-link {
        font-size: 2.5rem;
    }
}
@media (min-width: 1700px) {
    .hero-link {
        font-size: 2.8rem;
    }
}
.hero-link.visible {
    opacity: 1;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
}
