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

body{
    background: #081b29;
    color:#ededed
}

.header{
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInTopToBottom 0.5s ease-in-out forwards;
}

.logo{
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
}

.navbar a{
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
}

.navbar button{
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    background: transparent;
    border-color: transparent;
}

.header a:hover, .header button:hover{
    color: #00abf0;
}

.sections{
    padding: 0 10%;
    max-width: 300;
    font-size: 20px;
    column-gap: 20px;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInTopToBottom 1s ease-in-out forwards;
}

.h1{
    font-size: 50px;
}
.h2{
    font-size: 20px;
}
.h3{
    text-decoration: underline;
}

.home{
    display: flex;
    align-items:center;
    height: 50vh;
    padding: 0 10%;
    margin: auto;
    width: 50%;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInTopToBottom 0.5s ease-in-out forwards;
}


@keyframes fadeInTopToBottom {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: bold;
}

.circular-bullets{
    list-style-type: disc;
    padding: 0;
    margin-left: 20px;
}
.textbox{
    width: 700px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.italics{
    font-style: italic;
}

.imagehelper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.imagehelper img{
    flex: 1 1 30%;
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
}