body {
    background-image: url('portfoliofond.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Verdana, sans-serif;
    color: white;
}

h1 {
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 400px;
    max-width: 90%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

a {
    text-decoration: none;
    color: #333;
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

a:hover {
    background-color: #3498db;
    color: white;
    transform: scale(1.05);
    cursor: pointer;
}