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

body {
    background-color: rgb(20, 20, 20);
    display: grid;
    height: 100vh;
    place-items: center;
}

main {
    background-color: rgb(31, 31, 31);
    font-family: "Outfit", sans-serif;
    width: 300px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}

.myImage img{
   width: 80px;
   height: auto;
   border-radius: 40px;
   margin-top: 30px;
}

h2 {
    color: white;
    margin-top: 10px;
}

.adress {
    color: rgb(197, 248, 42);
    font-weight: 700;
    font-size: 14px;
    margin-top: 3px;
}

.description {
    color: white;
    font-size: 13px;
    font-weight: 200;
    margin-top: 25px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    margin-top: 20px;
}

.links a {
    text-decoration: none;
    color: white;
    background-color: rgb(51, 51, 51);
    text-align: center;
    border-radius: 5px;
    padding: 8px 70px;
    font-weight: 500;
    font-size: 15px;
   
}

.links a:hover {
    background-color: rgb(197, 248, 42);
    color: black;
}

    

