@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');

* {
    font-family: 'Helvetica Neue', sans-serif;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: #404040;
}

a:visited {
    color:darkslategrey;
}

h4 {
    font-family: adobe-hebrew, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 2em;
}

h5 {
    font-family: adobe-hebrew, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.8em;
}

footer {
    font-family: adobe-hebrew, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2em;
}

.footer-links {
    display: flex; width: 100%; margin: 0 auto;
}

.footer-inner-container {
    width: 75%; margin: 0 auto;display: flex; justify-content: space-between;
}

.footer-inner-container p {
    padding: 1em;
}

p {
    margin-top: 0.5em;
}


.thumbnail {
    cursor: pointer; 
    -webkit-transition-property: all; 
    -webkit-transition-duration: 1s; 
    -webkit-transition-timing-function: ease; 
}

.thumbnail:hover {
    transform: scale(1.1);
}

#spinner {
    margin-left: 10em;
    margin-top: 2em;
}

.alert-fade {
    position: relative;
    padding: 1.5em 1.2em;
    width: 20%;
    margin-left: 5em;
    color: rgb(23, 59, 23);
    background-color: rgb(162, 214, 162);
    border: rgb(23, 59, 23);
    border-radius: 1em;
    animation: fadeOut 2s forwards;
    animation-delay: 3s;
}

.alert-error {
    position: relative;
    padding: 1.5em 1.2em;
    width: 20%;
    margin-left: 5em;
    color: rgb(59, 23, 23);
    background-color: rgb(215, 125, 125);
    border: rgb(59, 23, 23);
    border-radius: 1em;
    animation: fadeOut 2s forwards;
    animation-delay: 3s;
}

@media screen and (max-width: 760px) {
    .alert-fade, .alert-error {
        width: 100%;
    }
    #spinner {
    margin-left: 5em;
}
.logo-img {
    width: 50%;
}
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}