* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: white;
    scroll-behavior: smooth;
}

nav {
    background-color: rgb(9, 0, 30);
    filter: drop-shadow(10px 10px 10px gray);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: rgb(255, 255, 255);
    padding: 15px;
    position: fixed;
}

nav #navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

nav #navigation a {
    color: white;
    padding-left: 20px;
    text-decoration: none;
    font-size: larger;
}

nav #dropdownmenu {
    display: none;
}

nav #dropdown {
    position: absolute;
    left: 55%;
    margin-top: 470px;
    width: 200px;
    height: 400px;
    display: none;
    background-color: #02012e;
    flex-direction: column;
    align-items: center;
    font-size: large;
}

nav #logo img{
    width: 40px;
    height: 40px;
}

nav #dropdown a {
    padding-top: 40px;
    text-decoration: none;
    color: white;
}

@media (max-width:600px) {
    nav #navigation {
        display: none;
    }
    nav #lang {
        display: none;
    }
    nav #dropdownmenu {
        display: flex;
    }
    nav #dropdown {
        display: flex;
    }
}

.welcomepage{
    padding-top: 200px;
    text-align: center;
    font-size: x-large;
    color: rgb(2, 0, 40);
}

.welcomepage h1{
    animation: animate_left_right;
    animation-duration: 3s;
}

.welcomepage h5{
    animation: animate_right_left;
    animation-duration: 3s;
}

.welcomepage p{
    padding-left: 7%;
    padding-right: 7%;
    padding-bottom: 10px;
    padding-top: 20px;
    text-align: center;
    animation: animate_bottom_top;
    animation-duration: 4s;
}

@media (max-width:600px) {
    .welcomepage p{
        padding-left: 2%;
        padding-right: 2%;
        width: 100%;
        word-wrap: normal;
        text-align: center;
    }
}

#hero {
    background-image: url('./assets/image1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 60px;
}

.welcomepage a{
    color: rgb(2, 0, 40);
    padding: 10px;
    border: 2px solid rgb(2, 0, 40);
    border-radius: 10px;
    text-decoration: none;
    font-size: large;
}

.welcomepage a:hover{
    background-color: rgb(2, 0, 40);
    color: white;
}

.socialmedia{
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 20px;
    padding-bottom: 100px;
}

/* animation */

@keyframes animate_left_right {
    from {opacity: 0;padding-left: 10%;}
    to {opacity: 1;}
}

@keyframes animate_right_left {
    from {opacity: 0;padding-right: 10%;}
    to {opacity: 1;}
}

@keyframes animate_bottom_top {
    from {opacity: 0;padding-top: 10%;}
    to {opacity: 1;}
}

.icon{
    padding-left: 20px;
}

.icon:hover {
    transform: scale(1.5,1.5);
}

#tools {
    padding-top: 70px;
    padding-bottom: 100px;
}

.tools{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

#contactinfo{
    text-align: center;
    font-size: medium;
    padding-top: 10px;
    padding-bottom: 50px;
    padding-left: 20px;
    margin-top: 50px;
    margin-bottom: 80px;
    margin-left: 12%;
    margin-right: 12%;
}

@media (max-width: 600px) {
    #contactinfo {
        margin-left: 1%;
        margin-right: 1%;
    }
}

#contact {
    background-image: url('./assets/image2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

#contactinfo #submit {
    background-color: transparent;
    color: rgb(2, 0, 40);
    padding: 15px;
    font-size: large;
    font-family: 'Times New Roman', Times, serif;
    border-radius: 10px;
    border: 1px solid rgb(2, 0, 40);
}

#contactinfo #submit:hover {
    background-color: #02012e;
    color: white;
}

button{
    background-color: transparent;
    color: rgb(2, 0, 40);
    padding: 15px;
    font-size: large;
    font-family: 'Times New Roman', Times, serif;
    border-radius: 50px;
    border: 1px solid rgb(2, 0, 40);
}

button:hover{
    background-color: rgb(2, 0, 40);
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

.footer{
    background-color: #02012e;
    color: white;
    padding: 30px;
    margin-bottom: 0;
    text-align: center;
}
