body{
    background-color: rgb(108, 214, 214);

}

.navbar{
    display: flex;
    background-color: #1f2937;
    align-items: center;
    min-width: 20vh;
    justify-content: space-between;
}
.logo h1{
    font-size: 24px;
    color: #f9faf8;
    margin-left: 30px;
}
.link-list{
    display: flex;
    border: 2px black;
    align-items: center;
    margin-left: auto;
}

.link-list ul{
    display: flex;
    gap: 20px;
    list-style: none;
    margin-right: 30px;
    /*border: 1px solid black;*/
    
}
.link-list ul li{
    /*border:  1px solid black; /* border for links items"*/
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
}

.header{
    display: flex;
    color: #f9faf8;
    background-color: #1f2937;
    align-items: center;
    justify-content: center;
    padding: 90px;
}
p{
    color: white;
    font-size: 20px;
}

h1{
    font-size: 48px;
    font-weight: bold;
    color: #f9faf8;
    margin: 0px;
    font-family: 'Roboto', Arial;
}
a:visited 
{
    text-decoration: none;
    
}
a{
    text-decoration: none;
    color: #fff;
}
a:hover{
    color: rgb(108, 214, 214);
}

.image img{
    width: 500px;
    height: auto;
    margin-left: 60px;
}

.header button{
    display: block;
    text-align: center;
    width: 150px;
    height: auto;
    font-size: 20px;
    background: #3882f6;
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
}
.main{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main h2{
    align-self: center;
}

.main img{
    width: 300px;
    height: auto;
    border: 2px solid greenyellow;
    border-radius: 10px;
    align-self: center;
    margin: 10px;
}

.section-1{
    display: flex;
    flex-direction: column;
    background-color: #E5E7EB;
    padding: 0 200px;
    text-align: center;
    margin: 0px;
    font-family: 'Roboto', Arial;
    margin-top: 100px;
    margin-bottom: 100px;
}
.section-1 p{
    color: #000000;
    font-weight: lighter;
    font-style: italic;
}

.section-2{
    background-color: #3882F6;
    margin: 50px 200px;
    padding: 10px 80px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: space-between;
}

.section-2 button{
    display: block;
    text-align: center;
    width: 150px;
    height: auto;
    font-size: 20px;
    background: #3882f6;
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
}
.section-2 h3{
    color: #f9faf8;
    font-size: 30px;
}

.footer{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1F2937;
    color: #fff;
    font-family: 'Roboto', arial;
    height: 50px;
}
.footer p{
        text-align: center;
        display: block;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
    
}