*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    
}

body{
    font-family: cursive, tahoma;
    background:linear-gradient(135deg,#000000,#ebebeb);
    color:#000000;
}

header{
    background:#18191aa8;
    color:white;
    text-align:flex-end;
    padding:35px;
    box-shadow:0 7px 10px rgba(0,0,0,0.3);
    font-family: Consolas, "Courier New", monospace;
    
}

header p{
    margin-top:10px;
}

nav{
    margin-top:20px;
}

nav a{
    color:white;
    text-decoration:underline wavy white;
    margin:10px;
    padding:8px 15px;
    border-radius:20px;
    transition:0.3s;
}

nav a:hover{
    background:white;
    color:#141516;
}

.card{
    width:80%;
    max-width:700px;
    margin:30px auto;
    background:white;
    padding:25px;
    border-radius:15px;
    text-align:flex-end;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.photo{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #030303;
    margin:15px 0;
}

ul{
    list-style:none;
    margin-top:15px;
}

ul li{
    padding:8px;
    font-size:18px;
}

button{
    margin-top:15px;
    background:#000000;
    color:rgb(233, 228, 228);
    padding:12px 20px;
    border:4px dotted rgb(226, 97, 194);
    border-radius:25px;
    cursor:crosshair;
    transition:.3s;
}

button:hover{
    background:#080808;
    transform:scale(1.05);
}

footer{
    background:#090a0a;
    color:white;
    text-align:center;
    padding:15px;
    margin-top:30px;
}

#contact form{
    max-width:500px;
    margin:auto;
}

#contact input,
#contact textarea{
    width:100%;
    padding:12px;
    border:1px dotted #ccc;
    border-radius:8px;
    margin-top:5px;
    margin-bottom:15px;
    font-size:16px;
    text-align: flex-end;
}

#contact button{
    background:#0f0f0f;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:crosshair;
    font-size:16px;
}

#contact button:hover{
    background:#111010;
    border:4px dotted rgb(226, 97, 194);
}



.dark-mode {
    background-color: #121212;
    color: white;
}

.dark-mode header {
    background-color: #1e1e1e;
}

.dark-mode .card {
    background-color: #2c2c2c;
    color: white;
}

.dark-mode nav a {
    color: white;
}

.dark-mode footer {
    background-color: #1e1e1e;
    color: white;
}

body {
    background-image: url('blonde.jpg');
    background-size: cover;
    background-position: center;
    background-repeat:no-repeat;
    background-attachment: fixed;
    justify-content: flex-end;
    

}
.achievement-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.achievement {
    text-align: center;
}

.achievement img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.achievement p {
    margin-top: 10px;
    font-weight: bold;
}


