@import url('https://fonts.googleapis.com/css2?family=Bad+Script&family=Montserrat:wght@500&display=swap');

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

body{
    background-color: #21242b;
    min-height: 100vh;
}

p{
    font-family: Montserrat, 'Segoe UI', sans-serif;
    text-align: justify;
    color:hsl(223, 8%, 50%);
    font-size: 20px;
}

li, a, button{
    font-family: Montserrat, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
}

h1{
    font-family: 'Bad Script', cursive;
    font-weight: 400;
    color: #FFD6BA;
    font-size: 30px;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background-color: hsl(177, 40%, 61%);
}

.flex-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px;
    align-content: center;
}

.conlight{
    background-color: hsl(223, 16%, 16%);
}

.flex-item{
    justify-content: space-between;
    padding: 10px;
    margin: 10px;
}

.flx-item1{
    min-width: 500px;
    max-width: 600px;
    max-height: 400px;
    align-self: center;
}

.flex-container img{
    min-width: 400px;
    max-width: 800px;
    height: auto;
    object-fit: scale-down;
    border-radius: 10px;
}

.nav_links{
    list-style: none;
}

.nav_links li{
    display: inline-block;
    padding: 0 15px;
}

nav a{
    transition: all 0.3s ease 0s;
    color: azure;
    font-size: 20px;
}

nav a:hover{
    transition: all 0.3s ease 0s;
    color: #555B6E;
    font-size: 20px;
}

button{
    padding: 9px 25px;
    border: none;
    font-size: 20px;
    border-radius: 50px;
    background-color: #ffd4b8;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover{
    background-color: #ffd4b873;
}

footer{
    text-align: center;
}

footer p{
    text-align: center;
    padding: 20px;
    font-size: 15px;
    color:hsl(223, 8%, 50%);
}

.centering{
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
}

.logo{
    font-family: 'Bad Script', cursive;
    font-size: 40px;
    font-weight: 400;
    color: #FFD6BA;
}

table
{
    font-family: Montserrat, 'Segoe UI', sans-serif;
    border-collapse: collapse;
    margin: auto;
}

td, tr, th
{
    border: 1px solid #000000;
    padding: 8px;
}

tr:nth-child(odd)
{
    background-color: #ffd4b8;
}

tr:nth-child(even)
{
    background-color: hsl(177, 40%, 85%);
}

table caption{
    color:hsl(223, 8%, 50%);
    margin: 20px;
}