@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --black: #000000;
    --lightBlack: #242424;
    --darkSlateGray: #2F4F4F;
    --gray: #333333;
    --darkGray: #A9A9A9;
    --offWhite: #F2F0EF;
    --alabasterWhite: #FAFAFA;
    --rose: #FF007F;
    --strowberry: #FA5053;
    --mediumSlateBlue: #7B68EE;
    --steelBlue: #4682B4;
    --royalBlue: #305CDE;
    --lighCyan: #E0FFFF;
    --gold: #FFD700;
    --peachPuff: #FFDAB9;
}

html {
    font-size: 16px;
}

* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--lightBlack);
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
}

header {
    width: 70%;
    position: fixed;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--lightBlack);
    margin: 0 0 25px 0;
    padding: 15px 0;
}

header nav {
    display: flex;
    align-items: center;
}

header nav img {
    width: 70px;
}

header nav p {
    color: var(--alabasterWhite);
    font-size: 0.9rem;
}

header button {
    padding: 7px;
    background-color: var(--alabasterWhite);
    color: var(--black);
    margin: 0 10px 0 0;
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
}

main {
    width: 70%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 150px 0 0 0;
}

main article {
    width: 100%;
    display: flex;
    flex-direction: column;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 70px 0 0 0;
}

footer .rights {
    text-align: center;
    color: var(--alabasterWhite);
    opacity: 0;
    position: fixed;
    bottom: 0;
    margin: 30px 0;
    font-size: 0.85rem;
}

@media (pointer: fine) {}
@media (pointer: coarse) {}

@media only screen and (max-width: 575.9px) {}
@media only screen and (min-width: 576px) {}
@media only screen and (max-width: 767.9px) {

    html {
        font-size: 14px;
    }

    header {
        width: 100%;
        padding: 3%;
    }

    main {
        width: 90%;
    }
}
@media only screen and (min-width: 768px) {}
@media only screen and (min-width: 992px) {}
@media only screen and (min-width: 1200px) {}
