@import url('https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner:wght@500&family=Oswald&display=swap');

*{
    font-family: 'Oswald', sans-serif;
    letter-spacing: 4px;
    background-color: #25252A;
}

body{
    background-color: #25252A; 
}

.avatar{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 5px solid #5553;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header{
    margin: 0;
    padding: 0;
    padding-top: 30px;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    font-size: 30px;
    
    color: #4f67ce;
}

.buttons{
    background-color: #25252A;
    flex-wrap: wrap;
    font-size: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    text-align: center;
    align-items: center;
    min-height: 100vh;

}
.btn-dc{
    width: 300px;
    height: 100px;
    border: none;
    color: wheat;
    transition: ease-out 0s;
    border: 3px solid #6a01c0 ;
   /* background-color: #6a01c0;*/ 
   position: relative;
    border-radius:4px;
}
.btn-dc:hover{
    color: rgb(255, 0, 64);
    cursor: pointer;
    border: 5px solid rgb(255, 0, 64);
    
}

.btn-web:hover{
    color: rgb(255, 0, 64);
    cursor: pointer;
    border: 5px solid rgb(255, 0, 64);
}
.btn-dc-link:hover{
    color: rgb(255, 0, 64);
    cursor: pointer;
    border: 5px solid rgb(255, 0, 64);
}
.btn-web{
    width: 300px;
    height: 100px;
    border: none;
    color: wheat;
    transition: ease-out 0s;
    border: 3px solid #6a01c0 ;
    position: relative;
    border-radius:4px;
}
.btn-dc-link{
    width: 300px;
    height: 100px;
    border: none;
    color: wheat;
    transition: ease-out 0s;
    border: 3px solid #6a01c0 ;
    position: relative;
    border-radius:4px;
}

                                                
