*{
    margin: 0;
    padding: 0;
    font-family: "montserrat", sans-serif;
}
body{
    background-color: rgba(0, 0, 0, 0.8);
    background-image: url("pictures/main2.1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    margin-left: 0px;
    position: relative;
}
.navbar-toggler {
    position: relative;
    margin-left: 44%;
}
.navbar-collapse{
    text-align: center;
}
#logo{
    position: relative;
    height: auto;
    width: auto;
    max-width: 164px;
    max-height: 164px;

}
.glow{
    -webkit-text-stroke: 1px black;
    animation: glow 512ms ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 12px #fff, 0 0 16px #efff, 0 0 20px #efff, 0 0 24px #efff, 0 0 28px #efff;
    }

    to {
        text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 12px #fff, 0 0 16px #efff, 0 0 20px #efff, 0 0 24px #efff, 0 0 28px #efff, 0 0 32px #efff;
    }
}
.contact-section{
    padding: 40px 0;
}
h2{
    text-align: center;
    color: #ddd;
}
img{
    max-width: 128px;
    max-height: 128px;
}
.contact-form{
    max-width: 600px;
    margin: auto;
    padding: 0 10px;
    overflow: hidden;
}
.contact-form-text{
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0;
    border: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 40px;
    outline: none;
    color: #ddd;
    transition: 0.5s;
}
.contact-form-text:focus{
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
}
textarea.contact-form-text{
    resize: none;
    height: 120px;
}
.contact-form-btn{
    float: right;
    border: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 12px 50px;
    border-radius: 20px;
    cursor: pointer;
    transition: o.5s;
}
.contact-form-btn:hover{
    background: rgb(255, 69, 0);

}
