﻿
html{
    scroll-behavior:smooth;
}


body {
    background-color: #60A5FA;
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    font-size: 55px;
    margin-top:100px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}

.login-f, .login-l {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    flex-direction:row;
    height:60px;
}

    .login-f a,
    .login-l a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height:60px;
        width: 50%;
        padding: 12px 18px;
        border-radius: 8px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 18px;
        border: 2px solid #00000040;
    }

        /* hover*/
        .login-f a:hover,
        .login-l a:hover {
            background-color: rgba(0, 0, 0, 0.55);
        }

.login-icon {
    width: 200px;
    height: 100px;
    justify-content: center;
    align-items: center;
}
.Info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-knapp {
    animation: pulse 1.5s ease-in-out infinite !important;
    display: inline-block !important;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #00000040;
    animation: pulse 1.5s ease-in-out infinite;
}

#sektion2 h2 {
    font-size: 20px;
    text-align: center;
    margin-top: 350px;
    padding: 20px 100px;
    font-family: 'Times New Roman';
    border-radius: 10px;
    background-color: rgba(253, 250, 250, 0.34);
    color: black;
}