@import url(./reset.css);
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --yellow: #ffd700;
}

html {
    background-color: black;
    color: white;
    font-family: Poppins, Roboto;
    font-size: 1.125rem;
}

button {
    background-color: var(--yellow);
    font-size: 1rem;
    font-weight: 700;
    font-family: Poppins, Roboto;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--yellow);
    border-radius: 6px;
    display: block;
}

button:hover {
    background-color: black;
    color: var(--yellow);
    cursor: pointer;
}

header {
    padding: 1rem;
}

footer {
    text-align: center;
}

h1 {
    text-align: center;
    font-size: 5rem;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-height: calc(80vh - 150px);
    text-align: center;
    margin-bottom: 20vh;
}

.bold {
    font-weight: 700;
}

.ytext {
    color: var(--yellow);
}

.wtext {
    color: white;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    gap: 1rem 0;
}

#foundbox {
    text-align: center;
    margin: 1rem;
}

#vxnLink {
    text-decoration: none;
}

#vxnLink:hover {
    cursor: pointer;
}
/* 
@media screen and (orientation: portrait) and (min-width: 500px){
    .ytext{
        color: green;
    }

    button{
        background-color: blue;
    }
} */