* {
    box-sizing: border-box;
    margin: 0;
}

body {
    background-color: black;
    font-family: 'Times New Roman', Times, serif;
    color: white;
}

h1{
    font-size: 40px;
}

h2{
    font-size: 30px;
}

p{
    font-size: 20px;
}

.background {
    background-image: url('bg.png');
    background-size: cover;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    filter: blur(5px) brightness(50%);
}

.container {
    display: flex;
    flex-direction: column;
    width: 100dvw;
    height: 100dvh;
    position: fixed;
}

.header{
    display: flex;
    width: 100%;
    height: 175px;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(0, 0, 0, 1);
}

.main{
    display: flex;
    flex: 1 1 0;
    justify-content: space-around;
    align-items: flex-end;
}

.footer{
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 1);
    z-index: 1;
}

#title{
    height: 150px;
    opacity: 100%;
    margin-right: 50px;
}

.figure{
    max-height: 700px;
    margin: 0;
}

a{
    transition: ease-in-out 0.5s;
}

a:hover{
    transform: scale(105%);
}

.icon{
    height: 100px;
}

.article{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 500px;
    width: 300px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    padding: 25px;
}

nav{
    width: 500px;
    height: auto;
    display: flex;
    justify-content: space-around;
}