@font-face {
    font-family:'Vlanella' ;
    src: url(Vlanella_Font_Family/VLANÈLLA\ REGULAR.ttf) format(truetype);
}

@font-face {
    font-family:'Salmond' ;
    src: url(salmond/Salmond-Semibold.ttf) format(truetype);
}

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

/* Body styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color:rgb(20, 20, 20);
    color: #d9d7d7;
}

/* Header styles */
header {
    background-color: #020000;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: center; /* Horizontally center the navigation links */
    align-items: center; /* Vertically center the navigation links */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}


/* Main styles */
main {
    padding: 20px;
   
}

section {
    margin-bottom: 30px;
    position:relative;
    display:flexbox;
    text-align:center;
}

h1, h2 {
    margin-bottom: 10px;
}


/* Footer styles */
footer {
    background-color: #0c0000;
    background:cover;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media (max-height: 600px) {
    footer {
        position: static; /* Reset position to static if viewport height is less than 600px */
    }
}

/*css for different content sections*/

#headline {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    font-size: 50px;
    color:rgb(225, 225, 225);
}

.dc_pic {
    position:relative;
    width:60%;
    border: 1px solid white;
    
}

#description {
    background-color: rgba(38, 38, 146, 0.554);
    position:relative;
    top: 50px;
    padding: 50px;
    padding-left: 200px;
    padding-right: 200px;
    width: 100%;
    line-height: 30px;
    border: 4px solid white;
}