@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap');

body {
    background-color: #bed6f9;
    font-family: 'Lexend Deca', sans-serif;
}

.head {
    text-align: center;
}

.main {
    font-size: 4rem;
}

.amu {
    transition: all 0.5s ease;
    color: yellow;
}

.amu:hover {
    color: black;
}

.r {
    font-size: 1.5rem;
}

.projects {
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 25px;
    margin: 25px;
    border-radius: 25px;
    color: white;
    justify-content: center;
    align-items: center;
}

.project {
    width: 30%;
    text-align: center;
    margin-top: 25px;
    border-radius: 25px;
    background-color: rgb(76, 76, 76);
    margin: 10px;
    padding: 5px;
}

.e {
    margin-top: 0px;
}

button.visit {
    transition: all 0.5s ease;
    position: relative;
    top: 0px;
    background-color: rgb(0, 0, 0);
    border-radius: 15px;
    color: white;
    padding: 10px;
    margin: 10px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding-right: 15px;
    padding-left: 15px;
}

button.visit:hover {
    top: -10px;
    background-color: rgb(37, 37, 37);
}

.hire {
    transition: all 0.5s ease;
    position: relative;
    top: 0px;
    background-color: rgb(89, 161, 255);
    border-radius: 15px;
    color: white;
    padding: 10px;
    margin: 10px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding-right: 15px;
    padding-left: 15px;
}

.hire:hover {
    top: -10px;
    background-color: rgb(9, 116, 255);
}