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

body {
    background: #0d0d0d;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    color: #f1c40f;
    font-size: 58px;
    margin-bottom: 20px;
}

p {
    font-size: 22px;
}

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    height:80px;

    background:#181818;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;

    border-bottom:2px solid #f1c40f;

}

.logo{

    color:#f1c40f;
    font-size:30px;
    font-weight:bold;

}

.menu{

    display:flex;
    gap:35px;

}

.menu a{

    color:white;
    text-decoration:none;
    font-size:18px;

    transition:0.2s;

}

.menu a:hover{

    color:#f1c40f;

}

.container{

    margin-top:80px;

}
