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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

body {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}


main {
    flex: 1 0 auto;
}


a {
    position: relative;
    text-decoration: none;
    color: rgb(244, 25, 25);
    font-size: 20px;
    font-weight: bold;

}

a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0077ff;
    transition: width 0.25s ease-in;
}

a:hover::after {
    width: 100%;
}

ul li {
    list-style: none;
    display: inline;
    margin: 0 15px;
}



/* 
a {
    color: green;
    padding: 20px;
} */
.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;

}

/* .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    padding: 80px 0;
    height: 100vh;

} */

ul {
    display: flex;
    align-items: center;
    justify-content: center;
}


h2 {
    font-size: 24px;
    font-weight: bold;
}

.link {
    margin-left: 60px;
    font-size: 18px;
    text-decoration: none;
    color: blue;
}

.link:hover {
    margin-left: 60px;
    font-size: 18px;
    text-decoration: none;
    color: rgb(208, 17, 4);
}


footer {
    background-color: black;
    color: white;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

h5 {
    font-weight: 900;
}