@font-face {
    font-family: 'ranade';
    src: url('resources/Ranade_Complete/Fonts/WEB/fonts/Ranade-Variable.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid green; */
}

a {
    text-decoration: none transparent;
}

body {
    background: rgb(32, 6, 6);
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: 'ranade', sans-serif, 'Times New Roman', Times, serif;
}

/* HEADER */

header {
    width: 100%;
    margin: 14px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'ranade';
    max-width: 960px;
    flex-wrap: nowrap;
}

h1 {
    padding: 3px;
    background-color: #810a1a;
    border-radius: 50%;
    margin-left: 12px;
}

h1,
h4 {
    font-size: 28px;
    color: rgb(250, 250, 250);
    font-weight: 700;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(230, 230, 230);
    text-decoration-color: transparent;
}

h1,
h2 {
    border: 3px solid transparent;
}

.head {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
}

header:hover {
    width: 100%;
    padding: 14px 0px;
    margin: 0 auto;
    background: #350a0a;
    transition: 0.25s;
}

/* BODY */

main {
    display: inline-block;
    flex-grow: 1;
    width: 98%;
    max-width: 960px;
    margin: 20px auto;
}

/* FOOTER */

.credit {
    color: rgb(202, 172, 172);
    font-family: sans-serif, 'Times New Roman', Times, serif;
    font-size: 14px;
}

footer {
    bottom: 0;
    width: 100%;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    background: #350a0a;
    align-items: center;
    padding-bottom: 14px;
}

.reference {
    display: flex;
    cursor: pointer;
    padding: 10px 0;
}

.footIcon {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.933);
    padding: 0 5px;
}

.footerLink {
    display: flex;
    margin: 0 8px;
    color: white;
    text-decoration: underline transparent;
}

h5 {
    font-size: 14px;
    margin-top: 2px;
    text-decoration: underline transparent;
}

.underline {
    text-decoration: underline transparent;

}

.underline:hover {
    text-decoration-color: #ffffff;
    transition: .5s;
}

p {
    color: whitesmoke;
}

.about {
    text-align: left;
    color: rgb(210, 215, 215);
    font-size: 18px;
}

.linkedIn {
    color: #ff9d64;
}

@media (max-width: 720px) {
    header {
        margin: 10px auto;
    }

    h2 {
        font-size: 12px;
    }

    h1,
    h4 {
        font-size: 20px;
    }

    .center {
        gap: 10px;
    }

    header:hover {
        padding: 10px 0;
    }
}