.first-section{
    display: flex;
    flex-direction: column;;
}

.logo{
    padding: 10px;
    text-align: center;
    font-size: 30px;
    color: white;
    margin-left: 20px;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
    width: 100vw;
    color: white;
    background-color: black;
    border-bottom: 2px solid black;
}

.menu{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50vw;
}

.menu .link{
    font-size: 18px;
}

.home-page-content{
    height: 80vh;
    padding-top: 100px;
}

.home-page-text{
    font-size: 15px;
}

b{
    color: green;
}

.contact-button{
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.contact-button a{
    text-decoration: none;
    color: green;
    text-align: center;
    border-bottom: 2px solid green;
    padding: 10px;
}

.contact-button a:hover{
    background-color: green;
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

header a:hover{
    text-decoration-line: underline;
    cursor: pointer;
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    text-decoration-color: black;
    display: block;
    font-size: 18px;
    cursor: pointer;
}
.dropdown-content a:hover {
    background-color: black;
    border-radius: 0;
}
.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    display: block;
}
.dropdown button {
    background-color: black;
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.dropdown button:hover{;
    text-decoration: underline;
}

@media (max-width: 768px) {
    header{
        justify-content: space-around;
        align-items: center;
    }
    .menu .link{
       display: none;
    }
    .logo{
        padding-left: 0;
        margin-left: 0;
    }
    .menu{
        width: 20vw;
    }
    .home-page-content{
        padding-top: 30px;
    }
    .first-section{
        height: 1100px;
    }
    .contact-button a:hover{
        background-color: unset;
        color: green;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
}