body {
    background-color: rgb(147, 255, 180);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#name {
    color: rgb(8, 49, 56);
    font-family: "Tahoma";
    font-size: 5em;
}

.link-box {
    border-width: 1px;
    border-color: blue;
    border-radius: 1.5em;
    background-color: rgba(44, 44, 44, 0.502);
    width: 20em;
    height: 6em;
    margin: 2em;
    display: flex;
    flex-direction: row;
    gap: 1em;
    padding-left: 0.5em;
    box-sizing: border-box;
    position: relative;

    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10/11 */
    user-select: none; /* Standard */
}

.link-image {
    border-radius: 10%;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.link-title {
    color: white;
    font-family: "Tahoma";
    font-size: 2.5em;
    margin:auto;
}

.link-address {
    position: absolute;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 600px) {
    #name {
        font-family: "Arial";
        font-size: 3em;
        text-align: center;
    }
    
    .link-title {
        font-family: "Arial";
    }
}