/* Grundindstillinger */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: rgb(67, 83, 255); /* Primær farve som baggrund */
    color: #333; /* Mørk grå tekst */
    overflow: hidden;
}

/* Fullscreen container */
.fullscreen-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, rgba(67, 83, 255, 0.8), rgba(255, 255, 255, 0.9)); /* Gradient fra primær farve til hvid */
    position: relative;
}

/* Center content */
.content {
    text-align: center;
}

/* Profilbillede */
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Gør billedet rundt */
    border: 5px solid #FFFFFF; /* Hvid kant */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Blød skygge */
    margin-bottom: 20px;
}

/* Titel */
h1 {
    font-family: 'Montserrat', sans-serif; /* Montserrat font */
    font-size: 48px; /* Forstørret titel */
    font-weight: 800; /* Ekstra fed */
    color: #FFFFFF; /* Hvid farve for titel */
    margin-bottom: 10px;
}

/* Undertitel */
p {
    font-family: 'Poppins', sans-serif; /* Poppins font */
    font-size: 24px; /* Forstørret undertitel */
    color: #FFFFFF; /* Hvid */
    margin: 10px 0;
}

/* Bio */
.bio {
    font-family: 'Poppins', sans-serif; /* Poppins font */
    font-size: 18px; /* Forstørret bio tekst */
    color: #FFFFFF; /* Hvid */
    max-width: 600px;
    margin: 0 auto 20px; /* Centerer og giver margin */
}

/* CTA-knap */
.cta-button {
    display: inline-block;
    background-color: rgb(67, 83, 255); /* Primær farve for knap */
    color: white;
    padding: 14px 28px; /* Mere padding for en større knap */
    border-radius: 50px; /* Rundere hjørner */
    text-decoration: none;
    font-size: 22px; /* Større skriftstørrelse */
    font-weight: bold; /* Gør teksten fed */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Tilføjet transform-effekt */
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Blød skygge */
}

.cta-button:hover {
    background-color: rgba(67, 83, 255, 0.8); /* Lysere ved hover */
    transform: translateY(-3px); /* Løfter knappen op ved hover */
}

/* Sociale medier links */
.social-links {
    margin-top: 15px;
}

.social-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #FFFFFF; /* Hvid for links */
    font-weight: bold;
}

.social-links a:hover {
    color: rgb(67, 83, 255); /* Primær farve ved hover */
}

/* Animationer og effekter */
.content h1, .content p, .content .bio {
    animation: fadeIn 2s ease-in-out;
}

.profile-img {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
