* {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

header{
    border-radius: 0;
    background-color: rgba(14, 14, 14, 0.845);
}
.headercontent{
    
    background-color: #000000;
    height: 150px;
    display: flex;
    align-items: center;
    font-size: 1.5em;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 0 20px;
}
a{

    text-decoration: none;
    font-size: 1.2em;
    transition: all ease 0.3s;
}
a:hover{
    transform: scale(1.2);
    cursor: pointer;
}
.navbar{
    margin-left: auto;
    display: flex;
    gap: 30px;
}
.content{
    background-color: rgba(0, 0, 0, 0.845);
    height: calc(100vh - 150px);
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
h1{
    padding-top: 50px;
}
hr{
    width: 100%;
}
p{
    width: 1000px;
    text-align: center;
    
}
h1{
    font-size: xx-large;
}
p{
    font-size: larger;
}